Skip to content

Commit 9205436

Browse files
author
codenameone
committed
Fix for issue 1465: RIM - Error starting MyApplication5: Module 'MyApplication5-10' has verification error 2924 at offset cac9 (codfile version 79)
1 parent 061b1a1 commit 9205436

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

CodenameOne/src/com/codename1/ui/util/UIBuilder.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2380,13 +2380,14 @@ public LazyValue<Form> createBackLazyValue(final Form f) {
23802380
cmd.putClientProperty(COMMAND_ARGUMENTS, "");
23812381
cmd.putClientProperty(COMMAND_ACTION, commandAction);
23822382
}
2383-
final Hashtable h = p;
2383+
final Object ho = p;
23842384
final Command backCommand = cmd;
23852385

23862386
return new LazyValue<Form>() {
23872387
public Form get(Object... args) {
23882388
String n = getPreviousFormName(f);
23892389
final Form f = createForm((Form)createContainer(fetchResourceFile(), n));;
2390+
Hashtable h = (Hashtable)ho;
23902391
if(h != null) {
23912392
setFormState(f, h);
23922393
setBackCommand(f, backCommand);

0 commit comments

Comments
 (0)