I just got Java5 project that has this error, i tried using Java5 and Java6, but its still there. it worked somehow before(since it was in svn), how can i bypass that compiler error?
|
1
|
|||||
|
|
|
Don't "bypass" the error - it won't do what you want it to. The error is there for good reason. The enum values are initialized before any other static fields. If you want to do something like adding all the values into a map, do it in a static initializer after everything else:
|
||
|
