We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 317f5e9 commit 3c3012cCopy full SHA for 3c3012c
1 file changed
test-app/runtime/src/main/java/com/tns/Runtime.java
@@ -73,9 +73,7 @@ private static int generateNewObjectId(int runtimeId) {
73
private native boolean notifyGcLegacy(int runtimeId, int[] javaObjectIds);
74
75
private boolean notifyGc(int runtimeId, int[] javaObjectIds) {
76
- return SUPPORTS_OPTIMIZED_NATIVE
77
- ? notifyGcFast(runtimeId, javaObjectIds)
78
- : notifyGcLegacy(runtimeId, javaObjectIds);
+ return notifyGcLegacy(runtimeId, javaObjectIds);
79
}
80
81
private native void lock(int runtimeId);
0 commit comments