project: rev 192

This commit is contained in:
ThatGamerBlue
2020-10-21 14:30:57 +02:00
parent 47583ab7c6
commit 88599e5dd3
355 changed files with 53400 additions and 49134 deletions

View File

@@ -1,9 +1,13 @@
import java.lang.ref.SoftReference;
import net.runelite.mapping.Export;
import net.runelite.mapping.Implements;
import net.runelite.mapping.ObfuscatedName;
@ObfuscatedName("fj")
@Implements("SoftWrapper")
public class SoftWrapper extends Wrapper {
@ObfuscatedName("z")
@ObfuscatedName("f")
@Export("ref")
SoftReference ref;
SoftWrapper(Object var1, int var2) {
@@ -11,12 +15,14 @@ public class SoftWrapper extends Wrapper {
this.ref = new SoftReference(var1); // L: 11
} // L: 12
@ObfuscatedName("z")
@ObfuscatedName("f")
@Export("get")
Object get() {
return this.ref.get(); // L: 15
}
@ObfuscatedName("k")
@ObfuscatedName("b")
@Export("isSoft")
boolean isSoft() {
return true; // L: 19
}