Added back curly brace to avoid illegal start of expression in List.java

This commit is contained in:
Adam Ding 2020-11-30 19:19:28 -05:00
parent 2b6af43cef
commit fcc243faef

View File

@ -85,12 +85,15 @@ public class List {
public void setUiPosition(Integer uiPosition) {
this.uiPosition = uiPosition;
}
public ItemEntry[] getEntries() {
public ItemEntry[] getEntries() {
return entries.toArray(new ItemEntry[entries.size()]);
//return;
}
public void addItemEntry(ItemEntry entry) {
entries.add(entry);
//return;
}
}