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
Copy file name to clipboardExpand all lines: src/test/resources/com/puppycrawl/tools/checkstyle/checks/javadoc/javadocparagraph/InputJavadocParagraphIncorrectOpenClosedTag.java
+7-7
Original file line number
Diff line number
Diff line change
@@ -56,11 +56,11 @@ public class InputJavadocParagraphIncorrectOpenClosedTag {
56
56
* Some Summary.
57
57
*
58
58
* <p>
59
-
* <ul> // ok until #15762
60
-
* <li>Item 1</li> // ok until #15762
61
-
* <li>Item 2</li> // ok until #15762
62
-
* <li>Item 3</li> // ok until #15762
63
-
* </ul> // ok until #15762
59
+
* <ul>
60
+
* <li>Item 1</li>
61
+
* <li>Item 2</li>
62
+
* <li>Item 3</li>
63
+
* </ul>
64
64
* </p>
65
65
*/
66
66
inte;
@@ -79,11 +79,11 @@ public class InputJavadocParagraphIncorrectOpenClosedTag {
79
79
* Some Summary.
80
80
*
81
81
* <p>
82
-
* <b>testing....</b> // ok until #15762
82
+
* <b>testing....</b>
83
83
* </p>
84
84
*
85
85
* <p>
86
-
* <h1>testing....</h1> // ok until #15762
86
+
* <h1>testing....</h1>
87
87
* </p>
88
88
*/
89
89
// violation 4 lines above '<p> tag should not precede HTML block-tag '<h1>''
Copy file name to clipboardExpand all lines: src/test/resources/com/puppycrawl/tools/checkstyle/checks/javadoc/javadocparagraph/InputJavadocParagraphIncorrectOpenClosedTag2.java
+6-6
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ public class InputJavadocParagraphIncorrectOpenClosedTag2 {
48
48
* Some Summary.
49
49
*
50
50
* <p>
51
-
* Some Javadoc. // ok until #15762
51
+
* Some Javadoc.
52
52
* </p>
53
53
*/
54
54
// violation 4 lines above '<p> tag should be placed immediately before the first word'
@@ -61,11 +61,11 @@ public class InputJavadocParagraphIncorrectOpenClosedTag2 {
0 commit comments