project: Rev 202

This commit is contained in:
Owain van Brakel
2021-12-14 18:20:58 +01:00
parent e974585ce8
commit 7c7bf0901a
406 changed files with 39725 additions and 39842 deletions

View File

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