Fixed merge conflict in List.java

This commit is contained in:
Adam Ding
2020-12-01 01:46:22 -05:00
38 changed files with 973 additions and 269 deletions

View File

@@ -89,11 +89,9 @@ public class List {
public ItemEntry[] getEntries() {
return entries.toArray(new ItemEntry[entries.size()]);
//return;
}
public void addItemEntry(ItemEntry entry) {
entries.add(entry);
//return;
}
}