changeset 7520:65c5ba56ef3c

disabled auto-formatting of manually formatted code
author Doug Simon <doug.simon@oracle.com>
date Tue, 22 Jan 2013 20:47:55 +0100
parents 9beb22bd83c3
children d4bc143c575a
files graal/com.oracle.truffle.codegen.processor/src/com/oracle/truffle/codegen/processor/ast/CodeAnnotationValue.java
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.truffle.codegen.processor/src/com/oracle/truffle/codegen/processor/ast/CodeAnnotationValue.java	Tue Jan 22 20:44:15 2013 +0100
+++ b/graal/com.oracle.truffle.codegen.processor/src/com/oracle/truffle/codegen/processor/ast/CodeAnnotationValue.java	Tue Jan 22 20:47:55 2013 +0100
@@ -31,6 +31,7 @@
 
     private final Object value;
 
+    // @formatter:off
     public CodeAnnotationValue(Object value) {
         Objects.requireNonNull(value);
         if ((value instanceof AnnotationMirror) || (value instanceof List< ? >)
@@ -45,6 +46,7 @@
             throw new IllegalArgumentException("Invalid annotation value type " + value.getClass().getName());
         }
     }
+    // @formatter:on
 
     @Override
     public Object getValue() {