Closed GoogleCodeExporter closed 8 years ago
Here is the code:
public void removeCommand(Command cmd)
{
ui.removeCommandUI(cmd.ui);
}
Please change this to
public void removeCommand(Command cmd)
{
if (cmd != null) ui.removeCommandUI(cmd.ui);
}
The class is in
http://microemu.googlecode.com/svn›
trunk›
microemulator›
microemu-midp›
src›
main›
java›
javax›
microedition›
lcdui›
Displayable.java
Thanks,
Jacob
Original comment by jacob.nordfalk
on 28 Apr 2010 at 10:17
[deleted comment]
I also found this problem.
Could you fix it ?
Original comment by Guillaum...@gmail.com
on 29 Apr 2010 at 8:49
Fixed in trunk
Original comment by bar...@gmail.com
on 29 Apr 2010 at 10:36
Thanks.
When would this be available for the public?
Would the http://snapshot.microemu.org/ version be dependable upon?
Original comment by jacob.nordfalk
on 30 Apr 2010 at 11:24
http://snapshot.microemu.org/ is available the day after the fix, so in that
case it
is available now.
Original comment by bar...@gmail.com
on 30 Apr 2010 at 11:35
Original issue reported on code.google.com by
jacob.nordfalk
on 28 Apr 2010 at 10:12