I have one generated class which get this error. Inside this class, there is one huge static block (5000+ lines). I broke the block into several smaller static blocks but still got this error. Why is that
Edit Code looks like:
private static final Map<Object, Object> nameMap = Maps.newHashMap();
static{
nameMap.put(xxx);
.... 5000 similar lines
nameMap.put(xxx);
}
If it is just data you will need to read the data in from a resource.
Arrange for your data file to be in the same location as the class file and use something like this:
I use this to read a comma separated list of 1000 prime numbers.