summaryrefslogtreecommitdiff
path: root/src/main/java/cuchaz/enigma/analysis/JarIndex.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/cuchaz/enigma/analysis/JarIndex.java')
-rw-r--r--src/main/java/cuchaz/enigma/analysis/JarIndex.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/main/java/cuchaz/enigma/analysis/JarIndex.java b/src/main/java/cuchaz/enigma/analysis/JarIndex.java
index 377a8cb..bd67090 100644
--- a/src/main/java/cuchaz/enigma/analysis/JarIndex.java
+++ b/src/main/java/cuchaz/enigma/analysis/JarIndex.java
@@ -507,18 +507,10 @@ public class JarIndex {
507 return this.fields.values(); 507 return this.fields.values();
508 } 508 }
509 509
510 public Collection<FieldEntry> getObfFieldEntries(ClassEntry classEntry) {
511 return this.fields.get(classEntry);
512 }
513
514 public Collection<BehaviorEntry> getObfBehaviorEntries() { 510 public Collection<BehaviorEntry> getObfBehaviorEntries() {
515 return this.behaviors.values(); 511 return this.behaviors.values();
516 } 512 }
517 513
518 public Collection<BehaviorEntry> getObfBehaviorEntries(ClassEntry classEntry) {
519 return this.behaviors.get(classEntry);
520 }
521
522 public TranslationIndex getTranslationIndex() { 514 public TranslationIndex getTranslationIndex() {
523 return this.translationIndex; 515 return this.translationIndex;
524 } 516 }