rs-client: Cleanup (#1087)

* rs-client: name SpriteBuffer

* rs-client: (re)name spritebuffer methods

* rs-client/deob: Add missed @Export's, make updatemappings fix this next time

* rs-client: run intellij redundant else inspection

* rs-client: invert some script interpreter if's

* deob: checkstyle fixes

* rs-client: SpriteBuffer_loadSprite -> SpriteBuffer_bufferFile
This commit is contained in:
Lucwousin
2019-07-23 19:43:31 +02:00
committed by GitHub
parent 61b4531a0d
commit 596689a4f7
175 changed files with 9825 additions and 9776 deletions

View File

@@ -91,10 +91,9 @@ public class IterableNodeDeque implements Iterable, Collection {
if (var2 == this.sentinel) {
this.field3538 = null;
return null;
} else {
this.field3538 = var2.previous;
return var2;
}
this.field3538 = var2.previous;
return var2;
}
@ObfuscatedName("b")
@@ -107,10 +106,9 @@ public class IterableNodeDeque implements Iterable, Collection {
if (var1 == this.sentinel) {
this.field3538 = null;
return null;
} else {
this.field3538 = var1.previous;
return var1;
}
this.field3538 = var1.previous;
return var1;
}
@ObfuscatedName("i")
@@ -125,7 +123,7 @@ public class IterableNodeDeque implements Iterable, Collection {
}
@ObfuscatedName("c")
@Export("isEmpty")
@Export("rsIsEmpty")
public boolean rsIsEmpty() {
return this.sentinel.previous == this.sentinel;
}