You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-javaformat/spring-javaformat-checkstyle/src/main/java/io/spring/javaformat/checkstyle/check/SpringJavadocCheck.java
+46-33Lines changed: 46 additions & 33 deletions
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,9 @@
16
16
17
17
packageio.spring.javaformat.checkstyle.check;
18
18
19
+
importjava.util.Collections;
20
+
importjava.util.HashSet;
21
+
importjava.util.Set;
19
22
importjava.util.regex.Matcher;
20
23
importjava.util.regex.Pattern;
21
24
@@ -35,6 +38,18 @@ public class SpringJavadocCheck extends AbstractSpringCheck {
Copy file name to clipboardExpand all lines: spring-javaformat/spring-javaformat-checkstyle/src/main/resources/io/spring/javaformat/checkstyle/check/messages.properties
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,7 @@ ternary.equalOperator=Ternary operation should use != when testing.
6
6
catch.singleLetter=Single letter catch variable (use "ex" instead).
7
7
javadoc.badCase=Javadoc element descriptions should not start with an uppercase letter.
8
8
javadoc.publicSince=Javadoc @since tag should not be used on private classes.
9
+
javadoc.missingSince=Missing Javadoc @since tag.
9
10
header.unexpected=Unexpected header.
10
11
nothis.unexpected=Reference to instance variable ''{0}'' should not use \"this.\".
11
12
methodorder.outOfOrder=Method ''{0}'' is out of order, expected {1}.
0 commit comments