Sho SHIMIZU
Committed by Ray Milkey

Remove unnecessary Object declaration in type parameter

Change-Id: I466a2d43e9f9d3effd3860761a97855110b71781
......@@ -18,7 +18,7 @@ package org.onosproject.event;
/**
* Abstraction of an of a time-stamped event pertaining to an arbitrary subject.
*/
public interface Event<T extends Enum, S extends Object> {
public interface Event<T extends Enum, S> {
/**
* Returns the timestamp of when the event occurred, given in milliseconds
......