Skip to content

Commit fe0df9c

Browse files
Kevin222004romani
authored andcommitted
Issue #13501: Kill mutation for DetailAstImpl-5
1 parent 7f6df92 commit fe0df9c

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

config/pitest-suppressions/pitest-common-2-suppressions.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
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>&lt;init&gt;</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>

src/main/java/com/puppycrawl/tools/checkstyle/DetailAstImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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. */

0 commit comments

Comments
 (0)