preserve ThreadGroup.threadTerminated in openjdk.pro

We call this cleanup method from within the VM for every thread, so we
need to preserve it.
This commit is contained in:
Joel Dice 2014-01-18 19:45:10 -07:00
parent 66bd7e0814
commit 7ec7fe7e4d

View File

@ -9,6 +9,10 @@
public void run();
}
-keepclassmembers class java.lang.ThreadGroup {
void threadTerminated(java.lang.Thread);
}
-keep class java.lang.System {
private static void initializeSystemClass();
public static void setProperties(java.util.Properties);