Task 2
This commit is contained in:
@@ -129,8 +129,8 @@ public class Storage {
|
|||||||
private static void sweep(List<Collectable> heap) {
|
private static void sweep(List<Collectable> heap) {
|
||||||
heap.removeIf(obj -> !obj.isMarked());
|
heap.removeIf(obj -> !obj.isMarked());
|
||||||
heap.forEach(obj -> obj.setMark(false));
|
heap.forEach(obj -> obj.setMark(false));
|
||||||
//oldHeap.addAll(youngHeap);
|
oldHeap.addAll(youngHeap);
|
||||||
//youngHeap.clear();
|
youngHeap.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void gc() {
|
public static void gc() {
|
||||||
|
|||||||
Reference in New Issue
Block a user