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
Copy file name to clipboardExpand all lines: spring-javaformat/spring-javaformat-checkstyle/src/main/resources/io/spring/javaformat/checkstyle/check/messages.properties
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,9 @@ import.avoidStatic=Using a static member import should be avoided - {0}.
11
11
import.ordering=Wrong order for ''{0}'' import.
12
12
javadoc.badCase=Javadoc element descriptions should not start with an uppercase letter.
13
13
javadoc.bannedTag=Javadoc tag ''{0}'' should not be used.
14
+
javadoc.earlierSince=Javadoc @since version ''{0}'' is earlier than @since version ''{1}'' at {2}:{3}.
14
15
javadoc.missingSince=Missing Javadoc @since tag.
16
+
javadoc.sameSince=Javadoc @since version ''{0}'' is unnecessary as it is the same as the @since version at {1}:{2}.
15
17
javadoc.publicSince=Javadoc @since tag should not be used on private classes.
16
18
javadoc.emptyLineBeforeTag=Method Javadoc should not have empty line before tag.
17
19
javadoc.nonJavadocComment=Comments should not include \"(non-Javadoc)\".
Copy file name to clipboardExpand all lines: spring-javaformat/spring-javaformat-checkstyle/src/test/resources/source/JavadocNonPublicSinceInsideAnnotation.java
0 commit comments