mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-26 13:41:10 +00:00
Issues #243,#326: improved deobfuscation
code formatting
This commit is contained in:
@@ -456,7 +456,7 @@ public class SWFOutputStream extends OutputStream {
|
||||
}
|
||||
return nBits;
|
||||
}
|
||||
|
||||
|
||||
public static int getNeededBitsU(int first, int... params) {
|
||||
int nBits = 0;
|
||||
nBits = enlargeBitCountU(nBits, first);
|
||||
@@ -507,7 +507,7 @@ public class SWFOutputStream extends OutputStream {
|
||||
}
|
||||
return currentBitCount;
|
||||
}
|
||||
|
||||
|
||||
public static int enlargeBitCountU(int currentBitCount, int value) {
|
||||
int neededNew = getNeededBitsU(value);
|
||||
if (neededNew > currentBitCount) {
|
||||
|
||||
Reference in New Issue
Block a user