8015470: (ann) IncompleteAnnotationException does not need to call toString (original) (raw)
Otávio Gonçalves de Santana otaviojava at java.net
Tue May 28 09:37:51 UTC 2013
- Previous message: RFR: 8009681: TEST_BUG: MethodExitReturnValuesTest.java fails with when there are unexpected background threads
- Next message: 8015470: (ann) IncompleteAnnotationException does not need to call toString
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
diff --git a/src/share/classes/java/lang/annotation/IncompleteAnnotationException.java b/src/share/classes/java/lang/annotation/IncompleteAnnotationException.java
a/src/share/classes/java/lang/annotation/IncompleteAnnotationException.java +++ b/src/share/classes/java/lang/annotation/IncompleteAnnotationException.java @@ -55,9 +55,9 @@ public IncompleteAnnotationException( Class<? extends Annotation> annotationType, String elementName) {
super(annotationType.getName().toString() +
super(annotationType.getName() + " missing element " +
elementName.toString());
elementName); this.annotationType = annotationType; this.elementName = elementName;
-- Atenciosamente.
Otávio Gonçalves de Santana
blog: http://otaviosantana.blogspot.com.br/ twitter: http://twitter.com/otaviojava site: http://www.otaviojava.com.br (11) 98255-3513
- Previous message: RFR: 8009681: TEST_BUG: MethodExitReturnValuesTest.java fails with when there are unexpected background threads
- Next message: 8015470: (ann) IncompleteAnnotationException does not need to call toString
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]