use of org.eclipse.jdt.internal.compiler.util.SimpleLookupTable in project che by eclipse.
the class IndexManager method reset.
/**
* Flush current state
*/
public synchronized void reset() {
super.reset();
if (this.indexes != null) {
this.indexes = new SimpleLookupTable();
this.indexStates = null;
}
this.indexLocations = new SimpleLookupTable();
this.javaPluginLocation = null;
}
Aggregations