[ZEPPELIN-3092] Fix line length to be 100

This commit is contained in:
Mohamed Magdy 2017-12-11 13:48:07 +01:00
parent 0174bbdbf9
commit 264565b09f

View file

@ -297,9 +297,10 @@ public class Notebook implements NoteEventListener {
}
public Note getNoteAfterReloadFromRepo(String noteId) {
// Each time the notebook is requested, it is loaded from the storage repository. This helps in fetching the
// latest versions of the notebook if a remote repository is used. For example, if GitHub is integrated, whenever
// the notebook is requested, it is pulled from the remote repository.
// Each time the notebook is requested, it is loaded from the storage repository. This helps
// in fetching the latest versions of the notebook if a remote repository is used. For example,
// if GitHub is integrated, wheneve the notebook is requested, it is pulled from the remote
// repository.
loadNoteFromRepo(noteId, new AuthenticationInfo(StringUtils.EMPTY));
return getNote(noteId);
}