You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a bug in the Decompiler module that is creating duplicated variables names in some method bodies.
Sample Code:
package samples;
public class LongValueSample {
public static void addLongValues() throws Exception {
long x = 10L;
long y = 20L;
System.out.println(x + y);
}
}
The Decompiler generates the code bellow:
public static void addLongValues() throws java.lang.Exception
{
long $i2;
long $i1;
java.io.PrintStream $i2;
long $i3;
$i1 = 10L;
$i2 = 20L;
$i2 = <java.lang.System: java.io.PrintStream out>;
$i3 = $i1 + $i2;
virtualinvoke $i2.<java.io.PrintStream: void println(long)>($i3);
return;
}
You can see the repeated usage of variable name $i2 (for a long and for java.io.PrintStream) .
The text was updated successfully, but these errors were encountered:
There is a bug in the Decompiler module that is creating duplicated variables names in some method bodies.
Sample Code:
The Decompiler generates the code bellow:
You can see the repeated usage of variable name $i2 (for a long and for java.io.PrintStream) .
The text was updated successfully, but these errors were encountered: