Skip to content

Commit

Permalink
debug output fixed after d1a6e07
Browse files Browse the repository at this point in the history
  • Loading branch information
thurka committed Feb 5, 2024
1 parent e9df745 commit c77fde6
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,10 +138,10 @@ private boolean computeOneLevel(boolean ignoreDirty) throws IOException {
if (newIdomId != 0) newDirtySet.add(newIdomId);
changed = true;
//changedId++;
//changedIds.add(instanceIdObj);
//changedIds.add(instanceId);
//changedIdx.add(index);
//oldDomIds.add(null);
//newDomIds.add(newIdomIdObj);
//newDomIds.add(newIdomId);
} else if (oldIdom != newIdomId) {
//addedBynewDirtySet.add((newDirtySet.contains(oldIdom) || newDirtySet.contains(instanceId)) && !(dirtySet.contains(oldIdom) || dirtySet.contains(instanceId)));
newDirtySet.add(oldIdom);
Expand All @@ -152,10 +152,10 @@ private boolean computeOneLevel(boolean ignoreDirty) throws IOException {
}
changed = true;
//changedId++;
//changedIds.add(instanceIdObj);
//changedIds.add(instanceId);
//changedIdx.add(index);
//oldDomIds.add(oldIdomObj);
//newDomIds.add(newIdomIdObj);
//oldDomIds.add(oldIdom);
//newDomIds.add(newIdomId);
}
}
}
Expand All @@ -175,7 +175,7 @@ private boolean computeOneLevel(boolean ignoreDirty) throws IOException {

private void updateAdditionalIds(final long instanceId, final List<Long> additionalIds) {
Instance i = heap.getInstanceByID(instanceId);
//System.out.println("Inspecting "+printInstance(instanceIdObj));
//System.out.println("Inspecting "+printInstance(instanceId));
if (i != null) {
for (FieldValue v : i.getFieldValues()) {
if (v instanceof ObjectFieldValue) {
Expand Down

0 comments on commit c77fde6

Please sign in to comment.