comparison graal/com.oracle.truffle.codegen.processor/src/com/oracle/truffle/codegen/processor/codewriter/FixWarningsVisitor.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 a748e4d44694
children
comparison
equal deleted inserted replaced
7529:4a11124a3563 7530:5e3d1a68664e
32 import javax.lang.model.type.*; 32 import javax.lang.model.type.*;
33 33
34 import com.oracle.truffle.codegen.processor.*; 34 import com.oracle.truffle.codegen.processor.*;
35 import com.oracle.truffle.codegen.processor.ast.*; 35 import com.oracle.truffle.codegen.processor.ast.*;
36 36
37 37 public class FixWarningsVisitor extends CodeElementScanner<Void, Void> {
38 public class FixWarningsVisitor extends CodeElementScanner<Void, Void>{
39
40 38
41 private final Set<String> symbolsUsed = new HashSet<>(); 39 private final Set<String> symbolsUsed = new HashSet<>();
42 40
43 private final ProcessorContext context; 41 private final ProcessorContext context;
44 private final DeclaredType unusedAnnotation; 42 private final DeclaredType unusedAnnotation;