File tree 2 files changed +0
-14
lines changed
config/pitest-suppressions
src/main/java/com/puppycrawl/tools/checkstyle/checks/coding
2 files changed +0
-14
lines changed Original file line number Diff line number Diff line change 81
81
<lineContent >final DetailAST firstNextNode = CheckUtil.getFirstNode(nextNode);</lineContent >
82
82
</mutation >
83
83
84
- <mutation unstable =" false" >
85
- <sourceFile >NestedIfDepthCheck.java</sourceFile >
86
- <mutatedClass >com.puppycrawl.tools.checkstyle.checks.coding.NestedIfDepthCheck</mutatedClass >
87
- <mutatedMethod >beginTree</mutatedMethod >
88
- <mutator >org.pitest.mutationtest.engine.gregor.mutators.experimental.MemberVariableMutator</mutator >
89
- <description >Removed assignment to member variable depth</description >
90
- <lineContent >depth = 0;</lineContent >
91
- </mutation >
92
-
93
84
<mutation unstable =" false" >
94
85
<sourceFile >OneStatementPerLineCheck.java</sourceFile >
95
86
<mutatedClass >com.puppycrawl.tools.checkstyle.checks.coding.OneStatementPerLineCheck</mutatedClass >
Original file line number Diff line number Diff line change @@ -144,11 +144,6 @@ public int[] getRequiredTokens() {
144
144
return new int [] {TokenTypes .LITERAL_IF };
145
145
}
146
146
147
- @ Override
148
- public void beginTree (DetailAST rootAST ) {
149
- depth = 0 ;
150
- }
151
-
152
147
@ Override
153
148
public void visitToken (DetailAST literalIf ) {
154
149
if (!CheckUtil .isElseIf (literalIf )) {
You can’t perform that action at this time.
0 commit comments