runescape-client: fix the thing

This commit is contained in:
ThatGamerBlue
2020-12-11 06:14:29 +00:00
parent f74baf08ce
commit 463bc42f5f
325 changed files with 35526 additions and 35531 deletions

View File

@@ -11,19 +11,19 @@ public class SoftWrapper extends Wrapper {
SoftReference ref;
SoftWrapper(Object var1, int var2) {
super(var2);
this.ref = new SoftReference(var1);
}
super(var2); // L: 10
this.ref = new SoftReference(var1); // L: 11
} // L: 12
@ObfuscatedName("h")
@Export("get")
Object get() {
return this.ref.get();
return this.ref.get(); // L: 15
}
@ObfuscatedName("v")
@Export("isSoft")
boolean isSoft() {
return true;
return true; // L: 19
}
}