예제 #1
0
파일: Log.java 프로젝트: AbacusHu/OpenDJ
 private void openReadOnlyLogFile(final File logFilePath) throws ChangelogException {
   final LogFile<K, V> logFile = LogFile.newReadOnlyLogFile(logFilePath, recordParser);
   final Pair<K, K> bounds = getKeyBounds(logFile);
   logFiles.put(bounds.getSecond(), logFile);
 }