diff graal/com.oracle.truffle.codegen.processor/src/com/oracle/truffle/codegen/processor/Log.java @ 8252:0905d796944a

Refactored codegen error model to make error redirection a lot easier.
author Christian Humer <christian.humer@gmail.com>
date Wed, 13 Mar 2013 19:58:28 +0100
parents f81be78f15a5
children 8a1115c92271
line wrap: on
line diff
--- a/graal/com.oracle.truffle.codegen.processor/src/com/oracle/truffle/codegen/processor/Log.java	Wed Mar 13 11:32:43 2013 +0100
+++ b/graal/com.oracle.truffle.codegen.processor/src/com/oracle/truffle/codegen/processor/Log.java	Wed Mar 13 19:58:28 2013 +0100
@@ -41,30 +41,6 @@
         this.processingEnv = env;
     }
 
-    public void warning(Element element, String format, Object... args) {
-        message(Kind.WARNING, element, null, null, format, args);
-    }
-
-    public void warning(Element element, AnnotationMirror mirror, String format, Object... args) {
-        message(Kind.WARNING, element, mirror, null, format, args);
-    }
-
-    public void error(Element element, String format, Object... args) {
-        message(Kind.ERROR, element, null, null, format, args);
-    }
-
-    public void error(String format, Object... args) {
-        message(Kind.ERROR, null, null, null, format, args);
-    }
-
-    public void error(Element element, AnnotationMirror mirror, String format, Object... args) {
-        message(Kind.ERROR, element, mirror, null, format, args);
-    }
-
-    public void error(Element element, AnnotationMirror mirror, AnnotationValue value, String format, Object... args) {
-        message(Kind.ERROR, element, mirror, value, format, args);
-    }
-
     public void message(Kind kind, Element element, AnnotationMirror mirror, AnnotationValue value, String format, Object... args) {
         AnnotationMirror usedMirror = mirror;
         Element usedElement = element;