Commit 2a651cf8 by sikang

bug fix

parent 6b77aa3c
......@@ -102,6 +102,9 @@ class JavaGarble:
#插入代码
def __garble_java_file(self,file):
self.__used_names = []
self.__variables = []
self.__functions = []
with open(file,"r",encoding="utf-8") as fin:
lines = fin.readlines()
......@@ -136,9 +139,6 @@ class JavaGarble:
fout.write(line)
def java_garble(self,config):
__used_names = []
__variables = []
__functions = []
for main_dir in config['lib_main']:
for root, dirs, files in os.walk("%s/%s"%(config["root"],main_dir)):
for file in files:
......
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