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

@@ -10,19 +10,19 @@ public class DirectWrapper extends Wrapper {
Object obj;
DirectWrapper(Object var1, int var2) {
super(var2); // L: 7
this.obj = var1; // L: 8
} // L: 9
super(var2);
this.obj = var1;
}
@ObfuscatedName("c")
@Export("get")
Object get() {
return this.obj; // L: 12
return this.obj;
}
@ObfuscatedName("b")
@Export("isSoft")
boolean isSoft() {
return false; // L: 16
return false;
}
}