fix pullNoteID to pullNoteId

This commit is contained in:
hyonzin 2016-10-24 20:26:33 +09:00
parent f843abd4b4
commit 2c5d461f7e

View file

@ -193,7 +193,7 @@ public class NotebookRepoSync implements NotebookRepo {
for (String id : pushNoteIds) {
LOG.info("ID : " + id);
}
pushNotes(subject, pushNoteIDs, srcRepo, dstRepo, false);
pushNotes(subject, pushNoteIds, srcRepo, dstRepo, false);
} else {
LOG.info("Nothing to push");
}
@ -203,7 +203,7 @@ public class NotebookRepoSync implements NotebookRepo {
for (String id : pullNoteIds) {
LOG.info("ID : " + id);
}
pushNotes(subject, pullNoteIDs, dstRepo, srcRepo, true);
pushNotes(subject, pullNoteIds, dstRepo, srcRepo, true);
} else {
LOG.info("Nothing to pull");
}