use of org.apache.commons.vfs2.cache.WeakRefFilesCache in project pentaho-kettle by pentaho.
the class KettleVFS method reset.
public void reset() {
defaultVariableSpace = new Variables();
defaultVariableSpace.initializeVariablesFrom(null);
fsm.close();
try {
fsm.setFilesCache(new WeakRefFilesCache());
fsm.init();
} catch (FileSystemException ignored) {
}
}
Aggregations