Hi,
I know this thread is a few months old. But I recently had the same issue as you, but thanks to the magic of SVN was able to identify what I did...
I was able to track the error down to this line of code in my project, midlet class:
Code:
Display.getDisplay(this).setCurrent(canvas);
Now I hadn't this issue before, so I figured it was something configuration wise that had changed, in the end was sort of. I had add the Motorola i716 sdk to my configuration and when set to that configuration it had an error with the following code block:
Code:
protected void showNotify() {
super.showNotify();
// my custom code
}
So in my haste to get it compile I changed to this...
Code:
protected void showNotify() {
showNotify();
// my custom code
}
So I think it ended up with a cyclic reference error when calling the showNotify method in the setCurrent() method of the Display class.
Anyhoo that was my issue/solution
Cookie