Merge pull request #19 from soundlogic2236/HEAD

Fixed Crash when reloading entries
This commit is contained in:
Jared 2015-01-20 02:14:42 +02:00
commit f049cbfe9b
2 changed files with 2 additions and 0 deletions

View file

@ -36,6 +36,7 @@ public class AddEntry implements IUndoableAction {
@Override
public void undo() {
Entry.category.entries.remove(Entry);
BotaniaAPI.getAllEntries().remove(Entry);
}
@Override

View file

@ -16,6 +16,7 @@ public class RemoveEntry implements IUndoableAction {
@Override
public void apply() {
Entry.category.entries.remove(Entry);
BotaniaAPI.getAllEntries().remove(Entry);
}
@Override