From f5b1f48242ebf70de571e58ceae4afe2dd1b4b51 Mon Sep 17 00:00:00 2001 From: Ben Hale Date: Wed, 15 Aug 2007 17:46:25 +0000 Subject: [PATCH] Forward merge SWF-330 --- .../java/org/springframework/webflow/execution/Event.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spring-webflow/src/main/java/org/springframework/webflow/execution/Event.java b/spring-webflow/src/main/java/org/springframework/webflow/execution/Event.java index 1ea31070..7df28638 100644 --- a/spring-webflow/src/main/java/org/springframework/webflow/execution/Event.java +++ b/spring-webflow/src/main/java/org/springframework/webflow/execution/Event.java @@ -31,13 +31,13 @@ import org.springframework.webflow.core.collection.CollectionUtils; *

* Why is this not an interface? A specific design choice. An event is not a strategy that defines a generic type or * role--it is essentially an immutable value object. It is expected that specializations of this base class be "Events" - * and not part of some other inheritence hierarchy. + * and not part of some other inheritance hierarchy. * * @author Keith Donald * @author Erwin Vervaet * @author Colin Sampaleanu */ -public final class Event extends EventObject { +public class Event extends EventObject { /** * The event identifier. @@ -45,7 +45,7 @@ public final class Event extends EventObject { private final String id; /** - * The time the event occured. + * The time the event occurred. */ private final long timestamp = System.currentTimeMillis(); @@ -85,7 +85,7 @@ public final class Event extends EventObject { } /** - * Returns the time at which the event occured, represented as the number of milliseconds since January 1, 1970, + * Returns the time at which the event occurred, represented as the number of milliseconds since January 1, 1970, * 00:00:00 GMT. * @return the timestamp */