Skip to content

Commit 6a3dbd3

Browse files
committed
Fix build error in Notebook.java
1 parent 2902189 commit 6a3dbd3

File tree

1 file changed

+2
-2
lines changed
  • zeppelin-zengine/src/main/java/org/apache/zeppelin/notebook

1 file changed

+2
-2
lines changed

zeppelin-zengine/src/main/java/org/apache/zeppelin/notebook/Notebook.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -550,11 +550,11 @@ public boolean apply(Note input) {
550550
}).toSortedList(new Comparator<Note>() {
551551
@Override
552552
public int compare(Note note1, Note note2) {
553-
String name1 = note1.id();
553+
String name1 = note1.getId();
554554
if (note1.getName() != null) {
555555
name1 = note1.getName();
556556
}
557-
String name2 = note2.id();
557+
String name2 = note2.getId();
558558
if (note2.getName() != null) {
559559
name2 = note2.getName();
560560
}

0 commit comments

Comments
 (0)