mirror of
https://github.com/corda/corda.git
synced 2025-01-06 05:04:20 +00:00
add exception for Object.clone() to vm.pro
Proguard gets confused about clone() and array classes (see http://sourceforge.net/tracker/index.php?func=detail&aid=2851344&group_id=54750&atid=474704).
This commit is contained in:
parent
081d2d68ce
commit
cf14a2c222
6
vm.pro
6
vm.pro
@ -97,3 +97,9 @@
|
|||||||
|
|
||||||
-keepnames public class avian.Callback
|
-keepnames public class avian.Callback
|
||||||
-keepnames public class java.util.concurrent.Callable
|
-keepnames public class java.util.concurrent.Callable
|
||||||
|
|
||||||
|
# Proguard gets confused about clone() and array classes (http://sourceforge.net/tracker/index.php?func=detail&aid=2851344&group_id=54750&atid=474704):
|
||||||
|
|
||||||
|
-keepclassmembers class java.lang.Object {
|
||||||
|
protected java.lang.Object clone();
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user