File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/com/github/markusbernhardt/xmldoclet Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -230,7 +230,7 @@ protected AnnotationInstance parseAnnotationDesc(final AnnotationMirror annotati
230
230
This attribute is a List (even if there is a single value).
231
231
But each value is not the actual value, but another AnnotationValue object with a value attribute.
232
232
*/
233
- annotationArgumentNode .getValue ().add (((AnnotationValue )value ).getValue ().toString ());
233
+ annotationArgumentNode .getValue ().add (((AnnotationValue ) value ).getValue ().toString ());
234
234
}
235
235
}
236
236
} else annotationArgumentNode .getValue ().add (annotationValue .getValue ().toString ());
@@ -605,12 +605,12 @@ protected TypeParameter parseTypeParameter(final TypeVariable typeVariable) {
605
605
final var lowerBound = typeVariable .getLowerBound ();
606
606
607
607
// If the lower bound is equal to the null type, it means that there is no actual lower bound
608
- if (!"<nulltype>" .equals (lowerBound .toString ()))
608
+ if (!"<nulltype>" .equals (lowerBound .toString ()))
609
609
bounds .addAll (parseTypeParameterBound (lowerBound ));
610
610
611
611
final var upperBound = typeVariable .getUpperBound ();
612
612
// If upper bound is Object, it means that there is no actual upper bound (since Object means "anything")
613
- if (!"java.lang.Object" .equals (upperBound .toString ()))
613
+ if (!"java.lang.Object" .equals (upperBound .toString ()))
614
614
bounds .addAll (parseTypeParameterBound (upperBound ));
615
615
616
616
return typeParameter ;
You can’t perform that action at this time.
0 commit comments