コード例 #1
0
ファイル: IndexedDataStore.java プロジェクト: KlausJung/krati
 @Override
 public synchronized void open() throws IOException {
   try {
     _bytesDB.open();
     _index.open();
   } catch (IOException ioe) {
     _index.close();
     _bytesDB.close();
     throw ioe;
   }
 }