Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlivier Thomann2010-07-28 19:46:39 +0000
committerOlivier Thomann2010-07-28 19:46:39 +0000
commitce1a50c038f410b16a75eb29a8e1c64f33a61360 (patch)
tree9f8e463352238b35bb56fbe631befc315c479f2b /org.eclipse.jdt.apt.pluggable.core
parentd8339605195e4a27842529cbdd4cfc67b77ac59c (diff)
downloadeclipse.jdt.core-ce1a50c038f410b16a75eb29a8e1c64f33a61360.tar.gz
eclipse.jdt.core-ce1a50c038f410b16a75eb29a8e1c64f33a61360.tar.xz
eclipse.jdt.core-ce1a50c038f410b16a75eb29a8e1c64f33a61360.zip
HEAD - Cleanup compiler warnings
Diffstat (limited to 'org.eclipse.jdt.apt.pluggable.core')
-rw-r--r--org.eclipse.jdt.apt.pluggable.core/src/org/eclipse/jdt/internal/apt/pluggable/core/dispatch/IdeMessagerImpl.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jdt.apt.pluggable.core/src/org/eclipse/jdt/internal/apt/pluggable/core/dispatch/IdeMessagerImpl.java b/org.eclipse.jdt.apt.pluggable.core/src/org/eclipse/jdt/internal/apt/pluggable/core/dispatch/IdeMessagerImpl.java
index 769c3a9f35..83dc6131c5 100644
--- a/org.eclipse.jdt.apt.pluggable.core/src/org/eclipse/jdt/internal/apt/pluggable/core/dispatch/IdeMessagerImpl.java
+++ b/org.eclipse.jdt.apt.pluggable.core/src/org/eclipse/jdt/internal/apt/pluggable/core/dispatch/IdeMessagerImpl.java
@@ -23,7 +23,7 @@ import org.eclipse.core.runtime.Status;
import org.eclipse.jdt.internal.apt.pluggable.core.Apt6Plugin;
import org.eclipse.jdt.internal.compiler.CompilationResult;
import org.eclipse.jdt.internal.compiler.apt.dispatch.AptProblem;
-import org.eclipse.jdt.internal.compiler.apt.dispatch.BatchMessagerImpl;
+import org.eclipse.jdt.internal.compiler.apt.dispatch.BaseMessagerImpl;
/**
*
@@ -72,7 +72,7 @@ public class IdeMessagerImpl implements Messager {
*/
public void printMessage(Kind kind, CharSequence msg, Element e, AnnotationMirror a,
AnnotationValue v) {
- AptProblem problem = BatchMessagerImpl.createProblem(kind, msg, e, a, v);
+ AptProblem problem = BaseMessagerImpl.createProblem(kind, msg, e, a, v);
if (kind == Kind.NOTE) {
Apt6Plugin.log(new Status(IStatus.INFO, Apt6Plugin.PLUGIN_ID, Apt6Plugin.STATUS_EXCEPTION, problem.getMessage(), null));
}

Back to the top