aboutsummaryrefslogtreecommitdiff
path: root/codegen/lib/mappings.py
diff options
context:
space:
mode:
Diffstat (limited to 'codegen/lib/mappings.py')
-rwxr-xr-xcodegen/lib/mappings.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/codegen/lib/mappings.py b/codegen/lib/mappings.py
index 22624fac..9c39fc2b 100755
--- a/codegen/lib/mappings.py
+++ b/codegen/lib/mappings.py
@@ -78,7 +78,6 @@ class Mappings:
return self.classes[obfuscated_class_name]
def get_method(self, obfuscated_class_name, obfuscated_method_name, obfuscated_signature):
- # print(obfuscated_class_name, self.methods[obfuscated_class_name])
return self.methods[obfuscated_class_name][f'{obfuscated_method_name}({obfuscated_signature})']
def get_field_type(self, obfuscated_class_name, obfuscated_field_name) -> str: