Skip to content

Commit b39dd8d

Browse files
committed
Reduce calls of SystemRunFinaliziation()
Signed-off-by: Florian Grabmeier <[email protected]>
1 parent 571d8d4 commit b39dd8d

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

test/functional/JIT_Test/src/jit/test/finalizer/TestObject.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,8 @@ public static boolean isFinalized(String name) {
6868
protected static void thoroughGCandFinalization() {
6969
System.gc();
7070
System.runFinalization();
71-
System.runFinalization();
7271
System.gc();
7372
System.runFinalization();
74-
System.runFinalization();
7573
}
7674

7775
@Test(groups = { "level.sanity","component.jit" })

test/functional/VM_Test/src/j9vm/test/classunloading/ClassUnloadingTestParent.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,8 @@ public void runTest() throws Exception {
6363
protected static void thoroughGCandFinalization() {
6464
System.gc();
6565
System.runFinalization();
66-
System.runFinalization();
6766
System.gc();
6867
System.runFinalization();
69-
System.runFinalization();
7068
}
7169

7270
protected void verifyUnloads() {

0 commit comments

Comments
 (0)