Skip to content

Commit

Permalink
fixes the test for SI-7112
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
xeno-by committed Feb 23, 2013
1 parent b1f2819 commit 89be691
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
enum JavaSimpleEnumeration_1 {
public enum JavaSimpleEnumeration_1 {
FOO,
BAR
}

0 comments on commit 89be691

Please sign in to comment.