()
| 149 | } |
| 150 | |
| 151 | public static void clear() { |
| 152 | |
| 153 | currentMIDlet = null; |
| 154 | |
| 155 | // Preserve only Launcher Context |
| 156 | for (Iterator i = midletContexts.entrySet().iterator(); i.hasNext();) { |
| 157 | Map.Entry entry = (Map.Entry) i.next(); |
| 158 | MIDlet test = ((MIDletContext) entry.getValue()).getMIDlet(); |
| 159 | } |
| 160 | // No Launcher found |
| 161 | midletContexts.clear(); |
| 162 | } |
| 163 | } |