Commit 5babf4ae by sikang

bug fix

parent d26dcb6e
...@@ -153,8 +153,7 @@ class JavaGarble: ...@@ -153,8 +153,7 @@ class JavaGarble:
# 定位1个缩进开头的类方法 # 定位1个缩进开头的类方法
if line.startswith(" ") and not line.startswith(" ") and ("){\n" in line or ") {\n" in line): if line.startswith(" ") and not line.startswith(" ") and ("){\n" in line or ") {\n" in line):
curly_braces = line.count("{") curly_braces = 0
curly_braces -= line.count("}")
if curly_braces >= 1: if curly_braces >= 1:
curly_braces += line.count("{") curly_braces += line.count("{")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment