summaryrefslogtreecommitdiff
path: root/source/com/c2kernel/events/History.java
diff options
context:
space:
mode:
Diffstat (limited to 'source/com/c2kernel/events/History.java')
-rw-r--r--source/com/c2kernel/events/History.java11
1 files changed, 3 insertions, 8 deletions
diff --git a/source/com/c2kernel/events/History.java b/source/com/c2kernel/events/History.java
index a964a72..868eaea 100644
--- a/source/com/c2kernel/events/History.java
+++ b/source/com/c2kernel/events/History.java
@@ -68,14 +68,9 @@ public class History extends RemoteMap<Event> {
synchronized (this) {
int newEventID = getLastId()+1;
newEvent.setID(newEventID);
- if (put(newEvent.getName(), newEvent) != null) {
- lastID = newEventID;
- return newEvent;
- }
- else {
- Logger.error("History.addEvent() - Event storage failed!");
- return null;
- }
+ put(newEvent.getName(), newEvent);
+ lastID = newEventID;
+ return newEvent;
}
}