Sho SHIMIZU
Committed by Gerrit Code Review

Remove type paramter bounds because Object is implicitly inherited

Change-Id: I7b933d924192d4b6bd079969cf4702d1c08f684f
......@@ -22,7 +22,7 @@ import org.joda.time.LocalDateTime;
/**
* Base event implementation.
*/
public class AbstractEvent<T extends Enum, S extends Object> implements Event<T, S> {
public class AbstractEvent<T extends Enum, S> implements Event<T, S> {
private final long time;
private final T type;
......