mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
fix style check error
This commit is contained in:
parent
a4fba8c1ce
commit
08eee3dacc
1 changed files with 4 additions and 2 deletions
|
|
@ -229,7 +229,8 @@ public class MongoNotebookRepo implements NotebookRepo {
|
|||
}
|
||||
|
||||
@Override
|
||||
public Revision checkpoint(String noteId, String checkpointMsg, AuthenticationInfo subject) throws IOException {
|
||||
public Revision checkpoint(String noteId, String checkpointMsg, AuthenticationInfo subject)
|
||||
throws IOException {
|
||||
// no-op
|
||||
LOG.warn("Checkpoint feature isn't supported in {}", this.getClass().toString());
|
||||
return Revision.EMPTY;
|
||||
|
|
@ -248,7 +249,8 @@ public class MongoNotebookRepo implements NotebookRepo {
|
|||
}
|
||||
|
||||
@Override
|
||||
public Note setNoteRevision(String noteId, String revId, AuthenticationInfo subject) throws IOException {
|
||||
public Note setNoteRevision(String noteId, String revId, AuthenticationInfo subject)
|
||||
throws IOException {
|
||||
// Auto-generated method stub
|
||||
return null;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue