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: src/test/resources/com/puppycrawl/tools/checkstyle/checks/javadoc/javadocparagraph/InputJavadocParagraphCheck1.java
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,9 @@ class Check {
28
28
* Checks whether file contains code. Files which are considered to have no code:
29
29
* </p>
30
30
* <p>
31
-
*/// 2 violations above
31
+
*/
32
+
// 2 violations 2 lines above:
33
+
// '\<p\> tag should be placed immediately before the first word'
34
+
// '\<p\> tag should be preceded with an empty line.'
Copy file name to clipboardExpand all lines: src/test/resources/com/puppycrawl/tools/checkstyle/checks/javadoc/javadocparagraph/InputJavadocParagraphIncorrect.java
Copy file name to clipboardExpand all lines: src/test/resources/com/puppycrawl/tools/checkstyle/checks/javadoc/javadocparagraph/InputJavadocParagraphIncorrect2.java
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,10 @@ class InputJavadocParagraphIncorrect2 {
34
34
*/
35
35
booleanemulated() {returnfalse;}
36
36
37
-
/**<p>Some Javadoc.<p> // 2 violations
37
+
// 2 violations 3 lines below:
38
+
// 'tag should be preceded with an empty line.'
39
+
// 'Redundant \<p\> tag.'
40
+
/**<p>Some Javadoc.<p>
38
41
* <p> // violation '<p> tag should be preceded with an empty line.'
39
42
* <p><p> // violation '<p> tag should be preceded with an empty line.'
0 commit comments