6566676869707172737475
} Store store; try { GraphCache cache; if (arguments.getUseEhcahe()) { cache = new EhcacheGraphCache(); } else { cache = new MapGraphCache(); } store = new FSSToreImpl(arguments.getStorageDir(), cache); } catch (IOException e1) {
9596979899100101102
recursiveDelete(testStoreDir); if (!testStoreDir.mkdirs()) { throw new RuntimeException("failed to create "+testStoreDir); } Store result = new BaseStoreImpl(new MemoryMetaStore(), new FSMoleculeStore(testStoreDir, new EhcacheGraphCache())); return result; }