project: Revvvvvvvvvvvvv

This commit is contained in:
Owain van Brakel
2022-02-09 13:21:03 +01:00
parent e91fc1a16a
commit e505012bff
474 changed files with 69930 additions and 69430 deletions

View File

@@ -4,7 +4,7 @@ import net.runelite.mapping.Implements;
import net.runelite.mapping.ObfuscatedName;
import net.runelite.mapping.ObfuscatedSignature;
@ObfuscatedName("pt")
@ObfuscatedName("pw")
@Implements("GZipDecompressor")
public class GZipDecompressor {
@ObfuscatedName("c")
@@ -16,35 +16,35 @@ public class GZipDecompressor {
garbageValue = "1000000"
)
GZipDecompressor(int var1, int var2, int var3) {
}
} // L: 13
public GZipDecompressor() {
this(-1, 1000000, 1000000);
}
this(-1, 1000000, 1000000); // L: 10
} // L: 11
@ObfuscatedName("c")
@ObfuscatedSignature(
descriptor = "(Lpi;[BI)V",
garbageValue = "1547217663"
garbageValue = "1149118442"
)
@Export("decompress")
public void decompress(Buffer var1, byte[] var2) {
if (var1.array[var1.offset] == 31 && var1.array[var1.offset + 1] == -117) {
if (var1.array[var1.offset] == 31 && var1.array[var1.offset + 1] == -117) { // L: 16
if (this.inflater == null) {
this.inflater = new Inflater(true);
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("");
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();
this.inflater.reset(); // L: 26
} else {
throw new RuntimeException("");
}
}
} // L: 27
}