Skip to content

Commit 97758d2

Browse files
committed
Checkstyle code format
Signed-off-by: Manoel Campos <manoelcampos@gmail.com>
1 parent fdc67ed commit 97758d2

File tree

1 file changed

+3
-3
lines changed
  • src/main/java/com/github/markusbernhardt/xmldoclet

1 file changed

+3
-3
lines changed

src/main/java/com/github/markusbernhardt/xmldoclet/Parser.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ protected AnnotationInstance parseAnnotationDesc(final AnnotationMirror annotati
230230
This attribute is a List (even if there is a single value).
231231
But each value is not the actual value, but another AnnotationValue object with a value attribute.
232232
*/
233-
annotationArgumentNode.getValue().add(((AnnotationValue)value).getValue().toString());
233+
annotationArgumentNode.getValue().add(((AnnotationValue) value).getValue().toString());
234234
}
235235
}
236236
} else annotationArgumentNode.getValue().add(annotationValue.getValue().toString());
@@ -605,12 +605,12 @@ protected TypeParameter parseTypeParameter(final TypeVariable typeVariable) {
605605
final var lowerBound = typeVariable.getLowerBound();
606606

607607
// 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()))
609609
bounds.addAll(parseTypeParameterBound(lowerBound));
610610

611611
final var upperBound = typeVariable.getUpperBound();
612612
// 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()))
614614
bounds.addAll(parseTypeParameterBound(upperBound));
615615

616616
return typeParameter;

0 commit comments

Comments
 (0)