mirror of
https://github.com/ClaytonWWilson/Listify.git
synced 2026-03-10 18:55:03 +00:00
Added back curly brace to avoid illegal start of expression in List.java
This commit is contained in:
@@ -85,12 +85,15 @@ public class List {
|
|||||||
|
|
||||||
public void setUiPosition(Integer uiPosition) {
|
public void setUiPosition(Integer uiPosition) {
|
||||||
this.uiPosition = uiPosition;
|
this.uiPosition = uiPosition;
|
||||||
|
}
|
||||||
|
|
||||||
public ItemEntry[] getEntries() {
|
public ItemEntry[] getEntries() {
|
||||||
return entries.toArray(new ItemEntry[entries.size()]);
|
return entries.toArray(new ItemEntry[entries.size()]);
|
||||||
|
//return;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void addItemEntry(ItemEntry entry) {
|
public void addItemEntry(ItemEntry entry) {
|
||||||
entries.add(entry);
|
entries.add(entry);
|
||||||
|
//return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user