Skip to content

Commit

Permalink
change incorrect "superclass" label to "outer class" in identifier panel
Browse files Browse the repository at this point in the history
  • Loading branch information
ix0rai committed Oct 10, 2024
1 parent fa70bd1 commit 78a9a8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public void refreshReference() {
th.addCopiableStringRow(I18n.translate("info_panel.identifier.obfuscated"), this.entry.getName());

if (ce.getParent() != null) {
th.addCopiableStringRow(I18n.translate("info_panel.identifier.superclass"), ce.getParent().getFullName());
th.addCopiableStringRow(I18n.translate("info_panel.identifier.outer_class"), ce.getParent().getFullName());
}
} else if (this.deobfEntry instanceof FieldEntry fe) {
this.nameField = th.addRenameTextField(EditableType.FIELD, fe.getName());
Expand Down
2 changes: 1 addition & 1 deletion enigma/src/main/resources/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
"info_panel.identifier.method": "Method",
"info_panel.identifier.constructor": "Constructor",
"info_panel.identifier.class": "Class",
"info_panel.identifier.superclass": "Superclass",
"info_panel.identifier.outer_class": "Outer class",
"info_panel.identifier.obfuscated": "Obfuscated Name",
"info_panel.identifier.type": "Type",
"info_panel.identifier.method_descriptor": "Method Descriptor",
Expand Down

0 comments on commit 78a9a8b

Please sign in to comment.