Skip to content
This repository has been archived by the owner on Nov 30, 2023. It is now read-only.

Commit

Permalink
#77
Browse files Browse the repository at this point in the history
  • Loading branch information
4ra1n committed Feb 2, 2023
1 parent 5a49a04 commit 4fd4428
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,9 @@ public void mouseClicked(MouseEvent evt) {
if (obj.getMethod().getName().startsWith("lambda$")) {
continue;
}
if (obj.getMethod().getName().startsWith("access$")) {
continue;
}
if (obj.getMethod().getName().equals("<clinit>")) {
continue;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,9 @@ public void mouseClicked(MouseEvent evt) {
if (obj.getMethod().getName().startsWith("lambda$")) {
continue;
}
if (obj.getMethod().getName().startsWith("access$")) {
continue;
}
if (obj.getMethod().getName().equals("<clinit>")) {
continue;
}
Expand Down

0 comments on commit 4fd4428

Please sign in to comment.