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

@@ -7,46 +7,46 @@ import net.runelite.mapping.ObfuscatedSignature;
@ObfuscatedName("mg")
@Implements("GZipDecompressor")
public class GZipDecompressor {
@ObfuscatedName("t")
public static String field4046;
@ObfuscatedName("n")
@Export("inflater")
Inflater inflater;
@ObfuscatedName("t")
public static String field4046;
@ObfuscatedName("n")
@Export("inflater")
Inflater inflater;
@ObfuscatedSignature(
descriptor = "(III)V",
garbageValue = "1000000"
)
GZipDecompressor(int var1, int var2, int var3) {
}
@ObfuscatedSignature(
descriptor = "(III)V",
garbageValue = "1000000"
)
GZipDecompressor(int var1, int var2, int var3) {
} // L: 13
public GZipDecompressor() {
this(-1, 1000000, 1000000);
}
public GZipDecompressor() {
this(-1, 1000000, 1000000); // L: 10
} // L: 11
@ObfuscatedName("n")
@ObfuscatedSignature(
descriptor = "(Lkx;[BI)V",
garbageValue = "1829368113"
)
@Export("decompress")
public void decompress(Buffer var1, byte[] var2) {
if (var1.array[var1.offset] == 31 && var1.array[var1.offset + 1] == -117) {
if (this.inflater == null) {
this.inflater = new Inflater(true);
}
@ObfuscatedName("n")
@ObfuscatedSignature(
descriptor = "(Lkx;[BI)V",
garbageValue = "1829368113"
)
@Export("decompress")
public void decompress(Buffer var1, byte[] var2) {
if (var1.array[var1.offset] == 31 && var1.array[var1.offset + 1] == -117) { // L: 16
if (this.inflater == null) {
this.inflater = new Inflater(true); // L: 17
}
try {
this.inflater.setInput(var1.array, var1.offset + 10, var1.array.length - (var1.offset + 8 + 10));
this.inflater.inflate(var2);
} catch (Exception var4) {
this.inflater.reset();
throw new RuntimeException("");
}
try {
this.inflater.setInput(var1.array, var1.offset + 10, var1.array.length - (var1.offset + 8 + 10)); // L: 19
this.inflater.inflate(var2); // L: 20
} catch (Exception var4) { // L: 22
this.inflater.reset(); // L: 23
throw new RuntimeException(""); // L: 24
}
this.inflater.reset();
} else {
throw new RuntimeException("");
}
}
this.inflater.reset(); // L: 26
} else {
throw new RuntimeException("");
}
} // L: 27
}