Skip to content

Commit 9610342

Browse files
committed
Polish
1 parent 974dc34 commit 9610342

File tree

1 file changed

+2
-2
lines changed
  • spring-javaformat/spring-javaformat-checkstyle/src/main/java/io/spring/javaformat/checkstyle/check

1 file changed

+2
-2
lines changed

spring-javaformat/spring-javaformat-checkstyle/src/main/java/io/spring/javaformat/checkstyle/check/SpringJavadocCheck.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2017-2021 the original author or authors.
2+
* Copyright 2017-2022 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -228,7 +228,7 @@ public void setAllowNonJavadocComments(boolean allowNonJavadocComments) {
228228
private DetailAST getInterfaceOrAnnotationDef(DetailAST ast) {
229229
return findParent(ast, TokenTypes.INTERFACE_DEF, TokenTypes.ANNOTATION_DEF);
230230
}
231-
231+
232232
private DetailAST findParent(DetailAST ast, int... classDefs) {
233233
while (ast != null) {
234234
for (int classDef: classDefs) {

0 commit comments

Comments
 (0)