git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1152521 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Timothy A. Bish 2011-07-30 21:41:17 +00:00
parent cef02210b7
commit 2a6a4b282f
1 changed files with 45 additions and 46 deletions

View File

@ -28,7 +28,6 @@ import org.apache.kahadb.util.*;
*/
public class Transaction implements Iterable<Page> {
private RandomAccessFile tmpFile;
private File txFile;
private int nextLocation = 0;
@ -623,7 +622,7 @@ public class Transaction implements Iterable<Page> {
free(lastPage);
lastPage = null;
} catch (IOException e) {
new RuntimeException(e);
throw new RuntimeException(e);
}
}
};