Skip to content

Commit

Permalink
Separate Multiple Frames With a Newline
Browse files Browse the repository at this point in the history
When an obfuscated frame resolves to multiple clear frames, separate them with a newline.
  • Loading branch information
alonalbert committed Sep 11, 2024
1 parent c2146ae commit d90299f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions retrace/src/proguard/retrace/ReTrace.java
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,9 @@ private String handle(FrameInfo obfuscatedFrame, FrameRemapper mapper, FramePatt
}

result.append(trimmedLine);
if (retracedFrames.hasNext()) {
result.append("\n");
}
}

previousLine = retracedLine;
Expand Down

0 comments on commit d90299f

Please sign in to comment.