The problem we are having is specifically with the Object classes from MicroEmu CLDC stubs.
We figured out that pyx4me is generating an invalid bytecode for this class.
The decompiled methods for all other classes are something like
public String aMethod() {
throw new Error("API Stub has been used");"
}
The methods of the Object when decompiled are like the following:
public Class getClass() {
}
This is an invalid Java code, as the method signature states that it returns a Class object, but the method body does not have a return, nor throws an Error/RuntimeException.
"CLDC RI preverifier" cannot load this invalid bytecode, generating a verifier error
Logged In: YES
user_id=342182
Originator: NO
The jour code for Object creation was fixed. Now I see a valid Object class. from my point of view.
Please verify that this solved you problem using build from svn of nightly build.
Logged In: YES
user_id=1504763
Originator: YES
I've tested the nightly
build and the problem was fixed.
Thanks for the quick response.
Diego