Fixed Validate message.

This commit is contained in:
EvilSeph
2012-02-18 15:28:33 -05:00
parent 2b137c5a9b
commit 9a80e7630a

View File

@@ -16,7 +16,7 @@ public abstract class Event implements Serializable {
} }
protected Event(final String name) { protected Event(final String name) {
Validate.notNull(name, "name is cannot be null"); Validate.notNull(name, "name cannot be null");
this.name = name; this.name = name;
} }