org.swix.swixml.SwingEngine
/**
* Removes the id from the cache.
* @param id <code>String</code> assigned name
*/
public void forget(final String id){
try {
idmap.remove(id);
} catch (Exception e){
// ignore it
}
}we needed that... Figure it might be useful to add in to the main . Didn't want to call it remove, or clear, or flush, because that implies that it affects the object, when all we're really doing is making it forget about it. -Kate
