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
Hi, I have been using your tool for manipulating Java bytecode and it has been extremely useful. However, I recently stumbled upon a bug in version 3.x that has been quite troubling.
When editing Java bytecode in the assembly pane (not the decompile pane), the escape characters get double-escaped after making a change to the code. This issue is specific to version 3.x, as the same changes do not result in this problem in version 2.21.
Thank you for your quick response to the issue. It's great to hear that the problem has been identified and is already being addressed. Looking forward to either seeing this fix incorporated into an upcoming 3.x version or experiencing the enhanced assembly functionalities in the forthcoming 4.x. The assembly functionality is crucial for many users like myself, and it's exciting to see it getting the attention it deserves for further refinement.
Hi, I have been using your tool for manipulating Java bytecode and it has been extremely useful. However, I recently stumbled upon a bug in version 3.x that has been quite troubling.
When editing Java bytecode in the assembly pane (not the decompile pane), the escape characters get double-escaped after making a change to the code. This issue is specific to version 3.x, as the same changes do not result in this problem in version 2.21.
Steps to Reproduce:
System.out.println(str);
related lines.As you can see, the
String str = "\"test\"";
has been transformed intoString str = "\\\"test\\\"";
, which should not happen.In version 2.21, this issue does not occur, and the string remains as
String str = "\"test\"";
.Thank you for your time and efforts on this great tool.
The text was updated successfully, but these errors were encountered: