Changeset 1365
- Timestamp:
- 07/14/12 00:22:15 (11 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
raptor-client/trunk/src/main/java/uk/ac/cardiff/raptor/store/impl/LogFileIncrementalMemoryEventHandler.java
r1364 r1365 78 78 */ 79 79 public boolean addEvent(Event event) { 80 if (event NotValid(event)) {80 if (eventValid(event) == false) { 81 81 return false; 82 82 } … … 105 105 106 106 /** 107 * Determines if the event has the present and correct attributes to be added. 107 * Determines if the event has the correct attributes to be added to this event handler. Currently, an event only 108 * requires the time of the event <code>eventTime</code> to be valid. 108 109 * 109 110 * @param event 110 111 */ 111 private boolean event NotValid(Event event) {112 private boolean eventValid(Event event) { 112 113 if (event.getEventTime() == null) { 113 114 return false;
Note: See TracChangeset
for help on using the changeset viewer.
