# HG changeset patch # User Doug Simon # Date 1358884075 -3600 # Node ID 65c5ba56ef3ca290f35ca7be81956aa78222fed1 # Parent 9beb22bd83c316983f317a7a8577a5057c911be9 disabled auto-formatting of manually formatted code diff -r 9beb22bd83c3 -r 65c5ba56ef3c graal/com.oracle.truffle.codegen.processor/src/com/oracle/truffle/codegen/processor/ast/CodeAnnotationValue.java --- 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() {