Use newer version of fernflower and remove __xx names

This commit is contained in:
Lucas
2019-07-04 23:51:52 +02:00
parent 1f2a9b21d6
commit a8d801d830
294 changed files with 27369 additions and 27322 deletions

View File

@@ -25,12 +25,13 @@ public class Node {
@ObfuscatedName("es")
@Export("remove")
public void remove() {
if(this.next != null) {
if (this.next != null) {
this.next.previous = this.previous;
this.previous.next = this.next;
this.previous = null;
this.next = null;
}
}
@ObfuscatedName("eg")