Hi, I'm wondering if anyone can help with this problem...
I was storing a bunch of objects in my own class that inherits from HashMap. Recently, I found that I needed these objects to be presented IN ORDER.
So I switched my custom class to inherit from HashTree, and made the appropriate minor tweakings in my source. Then I re-compiled the whole project, just to be sure. It compiled fine.
When I ran the project, I got this error:
<code>
java.lang.VerifyError: (class: RunKeysAnalysis, method: signature: (Ljava/lang/String

V) Incompatible object argument for function call
</code>
Can anyone make sense of this?