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
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,6 @@ public long await() {
private final BlockingQueue<EditLogItem> logEditQueue = new LinkedBlockingQueue<>();
private final Thread flushThread;

private EditLogOutputStream editStream = null;

private long txId = 0;


Expand Down Expand Up @@ -1715,13 +1713,6 @@ private long logEdit(short op, Writable writable) {
return logId;
}

/**
* Return the size of the current EditLog
*/
public synchronized long getEditLogSize() throws IOException {
return editStream.length();
}

/**
* Return the number of the current EditLog
*/
Expand Down
Loading