-
Yes indeed, it seems to be working fine with JRE 1.6.0_01.
2007-05-08 17:29:10 UTC in ProGuard Java Optimizer and Obfuscator
-
Just tested with 4.0Beta3, same thing happens.
2007-05-04 17:48:04 UTC in ProGuard Java Optimizer and Obfuscator
-
Hello
(see code below)
When using Proguard 4.0Beta2 it seems to convert the "len" var from an "int" to a "short".
When using Proguard 3.8 (or no obfuscator), it works fine.
int len = 0;
int off = offset;
short size;
for (int m = 0; m < _nCount; m++)
{
// read size on a short
size = (short)((file[off++]&0xFF) + ((file[off++]&0xFF)
2007-05-04 17:42:15 UTC in ProGuard Java Optimizer and Obfuscator