Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion persistit/core/src/main/java/com/persistit/IOMeter.java
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ private void dump(final DataInputStream is, final int count, final boolean analy
if (analyzePages
&& (op == WRITE_PAGE_TO_JOURNAL || op == READ_PAGE_FROM_JOURNAL || op == READ_PAGE_FROM_VOLUME
|| op == COPY_PAGE_FROM_JOURNAL || op == COPY_PAGE_TO_VOLUME || op == EVICT_PAGE_FROM_POOL)) {
final long handle = (volumeHandle << 48) + pageAddress;
final long handle = ((long) volumeHandle << 48) + pageAddress;
List<Event> list = events.get(handle);
if (list == null) {
list = new ArrayList<Event>(2);
Expand Down
Loading