Even more... you guessed it! REFACTORING. Removes the need for @Export for methods overriding base java methods

This commit is contained in:
Lucas
2019-07-07 21:30:17 +02:00
parent e2aac6d899
commit 83533475d4
116 changed files with 802 additions and 752 deletions

View File

@@ -30,11 +30,12 @@ public enum class249 implements Enumerated {
@ObfuscatedGetter(
intValue = 1686539261
)
final int field3276;
@Export("id")
final int id;
private class249(int var3, int var4) {
this.field3275 = var3;
this.field3276 = var4;
this.id = var4;
}
@ObfuscatedName("f")
@@ -44,6 +45,6 @@ public enum class249 implements Enumerated {
)
@Export("rsOrdinal")
public int rsOrdinal() {
return this.field3276;
return this.id;
}
}