From 62fa41e0eb4678e9569bfd9744bec06979e27c66 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Tue, 15 Sep 2009 20:57:52 +0200 Subject: Binkley on the newsgroup spotted a bug in this code: the one-arg javacError method delegated to javacWarning instead of javacError. Fixed that little oversight. --- src/lombok/javac/HandlerLibrary.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lombok/javac/HandlerLibrary.java') diff --git a/src/lombok/javac/HandlerLibrary.java b/src/lombok/javac/HandlerLibrary.java index ff21bd3f..20902e82 100644 --- a/src/lombok/javac/HandlerLibrary.java +++ b/src/lombok/javac/HandlerLibrary.java @@ -140,7 +140,7 @@ public class HandlerLibrary { /** Generates an error in the Messager that was used to initialize this HandlerLibrary. */ public void javacError(String message) { - javacWarning(message, null); + javacError(message, null); } /** Generates an error in the Messager that was used to initialize this HandlerLibrary. */ -- cgit