summaryrefslogtreecommitdiff
path: root/src/main/java/cuchaz/enigma/mapping/EntryFactory.java
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/main/java/cuchaz/enigma/mapping/EntryFactory.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/main/java/cuchaz/enigma/mapping/EntryFactory.java b/src/main/java/cuchaz/enigma/mapping/EntryFactory.java
index bd6ce4ec..0ac739c1 100644
--- a/src/main/java/cuchaz/enigma/mapping/EntryFactory.java
+++ b/src/main/java/cuchaz/enigma/mapping/EntryFactory.java
@@ -33,10 +33,6 @@ public class EntryFactory {
33 return new ClassEntry(classMapping.getObfFullName()); 33 return new ClassEntry(classMapping.getObfFullName());
34 } 34 }
35 35
36 public static ClassEntry getDeobfClassEntry(ClassMapping classMapping) {
37 return new ClassEntry(classMapping.getDeobfName());
38 }
39
40 public static ClassEntry getSuperclassEntry(CtClass c) { 36 public static ClassEntry getSuperclassEntry(CtClass c) {
41 return new ClassEntry(Descriptor.toJvmName(c.getClassFile().getSuperclass())); 37 return new ClassEntry(Descriptor.toJvmName(c.getClassFile().getSuperclass()));
42 } 38 }
@@ -155,8 +151,4 @@ public class EntryFactory {
155 public static BehaviorEntry getObfBehaviorEntry(ClassEntry classEntry, MethodMapping methodMapping) { 151 public static BehaviorEntry getObfBehaviorEntry(ClassEntry classEntry, MethodMapping methodMapping) {
156 return getBehaviorEntry(classEntry, methodMapping.getObfName(), methodMapping.getObfSignature()); 152 return getBehaviorEntry(classEntry, methodMapping.getObfName(), methodMapping.getObfSignature());
157 } 153 }
158
159 public static BehaviorEntry getObfBehaviorEntry(ClassMapping classMapping, MethodMapping methodMapping) {
160 return getObfBehaviorEntry(getObfClassEntry(classMapping), methodMapping);
161 }
162} 154}