Skip to content

Commit 1976d9f

Browse files
committed
fixes the test for SI-7112
Freshly released Java 1.6.0_41 for OSX fails with "IllegalAccessError: tried to access class JavaSimpleEnumeration_1 from class sun.proxy.$Proxy6", and rightfully so, because that class isn't public. I think I will avoid the usual "how could this even work before" in this commit message.
1 parent 9a2455a commit 1976d9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
enum JavaSimpleEnumeration_1 {
1+
public enum JavaSimpleEnumeration_1 {
22
FOO,
33
BAR
44
}

0 commit comments

Comments
 (0)