src/share/classes/java/lang/annotation/IncompleteAnnotationException.java
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File
*** old/src/share/classes/java/lang/annotation/IncompleteAnnotationException.java	Mon Jun  3 07:48:13 2013
--- new/src/share/classes/java/lang/annotation/IncompleteAnnotationException.java	Mon Jun  3 07:48:10 2013

*** 53,64 **** --- 53,63 ---- * @throws NullPointerException if either parameter is {@code null} */ public IncompleteAnnotationException( Class<? extends Annotation> annotationType, String elementName) { ! super(annotationType.getName().toString() + " missing element " + ! super(annotationType.getName() + " missing element " + elementName.toString()); this.annotationType = annotationType; this.elementName = elementName; }

src/share/classes/java/lang/annotation/IncompleteAnnotationException.java
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File