Use newer version of fernflower and remove __xx names
This commit is contained in:
@@ -25,11 +25,12 @@ public class DualNode extends Node {
|
||||
@ObfuscatedName("cg")
|
||||
@Export("removeDual")
|
||||
public void removeDual() {
|
||||
if(this.nextDual != null) {
|
||||
if (this.nextDual != null) {
|
||||
this.nextDual.previousDual = this.previousDual;
|
||||
this.previousDual.nextDual = this.nextDual;
|
||||
this.previousDual = null;
|
||||
this.nextDual = null;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user