[ZEPPELIN-3092] Break long line to smaller ones

This commit is contained in:
Mohamed Magdy 2017-12-18 22:07:46 +01:00
parent 4d6cc765eb
commit b5fbc1ed62

View file

@ -299,9 +299,9 @@ public class Notebook implements NoteEventListener {
public Note getNoteAfterReloadFromRepo(String noteId) {
synchronized (notes) {
// 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.
// 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.
loadNoteFromRepo(noteId, new AuthenticationInfo(StringUtils.EMPTY));
return notes.get(noteId);
}