Skip to content

Commit

Permalink
Fix GitHub #214
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Kriegisch <[email protected]>
  • Loading branch information
kriegaex committed Jan 21, 2023
1 parent 782cd41 commit 953a831
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ protected void prepareForMungers() {
int i = 0;
for (BcelAdvice element : badAdvice) {
ISourceLocation sLoc = element.getSourceLocation();
if (sLoc != null) {
if (sLoc != null && sLoc.getLine() > 0) {
badLocs[i++] = sLoc;
}
}
Expand Down

0 comments on commit 953a831

Please sign in to comment.