Skip to content
Closed
Show file tree
Hide file tree
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 @@ -204,4 +204,10 @@ public void remove(String noteId) throws IOException {
@Override
public void close() {
}

@Override
public void checkpoint(String noteId, String checkPointName) throws IOException {
// no-op
LOG.info("Checkpoint feature isn't supported in {}", this.getClass().toString());
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,6 @@ public void close() {
@Override
public void checkpoint(String noteId, String checkPointName) throws IOException {
// no-op
LOG.info("Checkpoint feature isn't suported in {}", this.getClass().toString());
LOG.info("Checkpoint feature isn't supported in {}", this.getClass().toString());
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ public void close() {
@Override
public void checkpoint(String noteId, String checkPointName) throws IOException {
// no-op
logger.info("Checkpoint feature isn't suported in {}", this.getClass().toString());
logger.info("Checkpoint feature isn't supported in {}", this.getClass().toString());
}

}