mirror of https://github.com/apache/activemq.git
Apply patch for: https://issues.apache.org/jira/browse/AMQ-3292
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1152521 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cef02210b7
commit
2a6a4b282f
|
@ -28,7 +28,6 @@ import org.apache.kahadb.util.*;
|
||||||
*/
|
*/
|
||||||
public class Transaction implements Iterable<Page> {
|
public class Transaction implements Iterable<Page> {
|
||||||
|
|
||||||
|
|
||||||
private RandomAccessFile tmpFile;
|
private RandomAccessFile tmpFile;
|
||||||
private File txFile;
|
private File txFile;
|
||||||
private int nextLocation = 0;
|
private int nextLocation = 0;
|
||||||
|
@ -623,7 +622,7 @@ public class Transaction implements Iterable<Page> {
|
||||||
free(lastPage);
|
free(lastPage);
|
||||||
lastPage = null;
|
lastPage = null;
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
new RuntimeException(e);
|
throw new RuntimeException(e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue