preserve Thread.run(Thread) from elimination by ProGuard

This commit is contained in:
Joel Dice 2009-07-29 10:33:39 -06:00
parent ad0592df6f
commit c5deeb2cda

4
vm.pro
View File

@ -73,7 +73,9 @@
# Thread.run is called by name in the VM
-keepclassmembernames class java.lang.Thread { void run(); }
-keepclassmembers class java.lang.Thread {
private static void run(java.lang.Thread);
}
# when continuations are enabled, the VM may call these methods by name: