File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed
config/pitest-suppressions
src/main/java/com/puppycrawl/tools/checkstyle Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" ?>
22<suppressedMutations >
3- < mutation unstable = " false " >
4- < sourceFile >DetailAstImpl.java</ sourceFile >
5- < mutatedClass >com.puppycrawl.tools.checkstyle.DetailAstImpl</ mutatedClass >
6- < mutatedMethod > < init > </ mutatedMethod >
7- < mutator >org.pitest.mutationtest.engine.gregor.mutators.experimental.MemberVariableMutator</ mutator >
8- < description >Removed assignment to member variable childCount</ description >
9- < lineContent >private int childCount = NOT_INITIALIZED;</ lineContent >
10- </ mutation >
3+
4+
5+
6+
7+
8+
9+
10+
1111
1212 <mutation unstable =" false" >
1313 <sourceFile >DetailAstImpl.java</sourceFile >
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ public final class DetailAstImpl implements DetailAST {
4747 private int columnNo = NOT_INITIALIZED ;
4848
4949 /** Number of children. */
50- private int childCount = NOT_INITIALIZED ;
50+ private int childCount ;
5151 /** The parent token. */
5252 private DetailAstImpl parent ;
5353 /** Previous sibling. */
You can’t perform that action at this time.
0 commit comments