rsc: please read the commit message for my neverending descent into madness

how do i stop making castles
every time i go to the beach i make a castle
every time i open blender i model castles
every time i play chess i castle
i just cant stop making castles dude
This commit is contained in:
ThatGamerBlue
2021-02-26 00:33:45 +00:00
parent 62df7e0ff1
commit 563587e6b0
346 changed files with 84175 additions and 82557 deletions

View File

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