comparison graal/com.oracle.truffle.codegen.processor/src/com/oracle/truffle/codegen/processor/Log.java @ 7530:5e3d1a68664e

applied mx eclipseformat to all Java files
author Doug Simon <doug.simon@oracle.com>
date Wed, 23 Jan 2013 16:34:57 +0100
parents 6343a09b2ec1
children f81be78f15a5
comparison
equal deleted inserted replaced
7529:4a11124a3563 7530:5e3d1a68664e
37 37
38 public Log(ProcessingEnvironment env) { 38 public Log(ProcessingEnvironment env) {
39 this.processingEnv = env; 39 this.processingEnv = env;
40 } 40 }
41 41
42 public void warning(Element element, String format, Object ... args) { 42 public void warning(Element element, String format, Object... args) {
43 message(Kind.WARNING, element, null, null, format, args); 43 message(Kind.WARNING, element, null, null, format, args);
44 } 44 }
45 45
46 public void warning(Element element, AnnotationMirror mirror, String format, Object ... args) { 46 public void warning(Element element, AnnotationMirror mirror, String format, Object... args) {
47 message(Kind.WARNING, element, mirror, null, format, args); 47 message(Kind.WARNING, element, mirror, null, format, args);
48 } 48 }
49 49
50 public void error(Element element, String format, Object... args) { 50 public void error(Element element, String format, Object... args) {
51 message(Kind.ERROR, element, null, null, format, args); 51 message(Kind.ERROR, element, null, null, format, args);