Skip to content

Commit

Permalink
update readme and remove dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
Henry Coles committed Jun 10, 2022
1 parent c0e9f3e commit 3b0fe10
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Read all about it at http://pitest.org
### 1.8.1-SNAPSHOT

* #1025 - Rework String Switch filtering
* #1027 - Rework assert filtering and remove legacy filter mechanism

### 1.8.0

Expand Down
3 changes: 1 addition & 2 deletions pitest/src/main/java/sun/pitest/CodeCoverageStore.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ public final class CodeCoverageStore {
.replace(
'.',
'/');
public static final String PROBE_METHOD_NAME = "visitProbes";

private static InvokeReceiver invokeQueue;
private static int classId = 0;
Expand Down Expand Up @@ -81,7 +80,7 @@ public static synchronized Collection<Long> getHits() {
continue;
}
final int classId = each.getKey();
// final int[] mapping = classProbeToBlockMapping.get(classId);

for (int probeId = 1; probeId != bs.length; probeId++) {
if (bs[probeId]) {
blockHits.add(encode(classId, probeId));
Expand Down

0 comments on commit 3b0fe10

Please sign in to comment.