Skip to content

Commit

Permalink
add throws to notebook getRevisionNote
Browse files Browse the repository at this point in the history
  • Loading branch information
Khalid Huseynov authored and Khalid Huseynov committed Jul 18, 2016
1 parent baaa704 commit ce097ed
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,8 @@ public void checkpointNote(String noteId, String checkpointMessage, Authenticati
notebookRepo.checkpoint(noteId, checkpointMessage, subject);
}

public Note getNoteRevision(String noteId, String revisionId, AuthenticationInfo subject) {
public Note getNoteRevision(String noteId, String revisionId, AuthenticationInfo subject)
throws IOException {
return notebookRepo.get(noteId, revisionId, subject);
}

Expand Down

0 comments on commit ce097ed

Please sign in to comment.