Skip to content

Commit

Permalink
Fix variable name in ErrorManager
Browse files Browse the repository at this point in the history
  • Loading branch information
romildo committed Oct 9, 2016
1 parent 6ddd9b3 commit b896b59
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/error/ErrorManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public void warning(Loc loc, String format, Object... args) {
}

public void fatal(String format, Object... args) {
warningsCounter++;
fatalsCounter++;
message("FATAL: " + format, args);
}

Expand All @@ -83,5 +83,4 @@ public void summary() {
show.accept(getSummary());
}


}

0 comments on commit b896b59

Please sign in to comment.