zjffdu commented on a change in pull request #4134: URL: https://github.com/apache/zeppelin/pull/4134#discussion_r662108616
########## File path: zeppelin-zengine/src/main/java/org/apache/zeppelin/notebook/Notebook.java ########## @@ -346,6 +346,15 @@ public void removeNote(Note note, AuthenticationInfo subject) throws IOException fireNoteRemoveEvent(note, subject); } + public void removeCorruptedNote(String noteId, AuthenticationInfo subject) throws IOException { + LOGGER.info("Remove corrupted note: {}", noteId); + // Set Remove to true to cancel saving this note +// note.setRemoved(true); Review comment: Indention -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@zeppelin.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org