Fix maven build

Do not create class objects for classes which come from Java.
This commit is contained in:
Alexander Udalov
2012-09-20 17:59:50 +04:00
parent 8c50b0ce9d
commit dadc97d29f
4 changed files with 26 additions and 3 deletions

View File

@@ -0,0 +1,7 @@
package test;
public class noClassObjectForJavaClass {
public enum E { ENTRY }
public static String foo() { return "OK"; }
}