Skip to content

Commit a1b2a8a

Browse files
Tahanimaromani
authored andcommitted
Issue #13213: Remove '//ok' comments for emptyforiteratorpad module
1 parent 0a698d9 commit a1b2a8a

File tree

4 files changed

+3
-9
lines changed

4 files changed

+3
-9
lines changed

config/checkstyle-input-suppressions.xml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,6 @@
7171

7272
<suppress id="UnnecessaryOkComment"
7373
files="checks[\\/]regexp[\\/]regexponfilename[\\/]InputRegexpOnFilenameSemantic.java"/>
74-
<suppress id="UnnecessaryOkComment"
75-
files="checks[\\/]whitespace[\\/]emptyforiteratorpad[\\/]InputEmptyForIteratorPad2.java"/>
76-
<suppress id="UnnecessaryOkComment"
77-
files="checks[\\/]whitespace[\\/]emptyforiteratorpad[\\/]InputEmptyForIteratorPadToCheckTrimFunctionInOptionProperty.java"/>
78-
<suppress id="UnnecessaryOkComment"
79-
files="checks[\\/]whitespace[\\/]emptyforiteratorpad[\\/]InputEmptyForIteratorPadToCheckUppercaseFunctionInOptionProperty.java"/>
8074
<suppress id="UnnecessaryOkComment"
8175
files="checks[\\/]whitespace[\\/]parenpad[\\/]InputParenPadCheckEmoji.java"/>
8276
<suppress id="UnnecessaryOkComment"

src/test/resources/com/puppycrawl/tools/checkstyle/checks/whitespace/emptyforiteratorpad/InputEmptyForIteratorPad2.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77

88
package com.puppycrawl.tools.checkstyle.checks.whitespace.emptyforiteratorpad;
99

10-
class InputEmptyForIteratorPad2 // ok
10+
class InputEmptyForIteratorPad2
1111
{ }

src/test/resources/com/puppycrawl/tools/checkstyle/checks/whitespace/emptyforiteratorpad/InputEmptyForIteratorPadToCheckTrimFunctionInOptionProperty.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ void method() {
2121
i++;
2222
}
2323

24-
for (int i = 0; i < 1; ) { // ok
24+
for (int i = 0; i < 1; ) {
2525
i++;
2626
}
2727
}

src/test/resources/com/puppycrawl/tools/checkstyle/checks/whitespace/emptyforiteratorpad/InputEmptyForIteratorPadToCheckUppercaseFunctionInOptionProperty.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ void method() {
2121
i++;
2222
}
2323

24-
for (int i = 0; i < 1; ) { // ok
24+
for (int i = 0; i < 1; ) {
2525
i++;
2626
}
2727
}

0 commit comments

Comments
 (0)