Committed by
Ray Milkey
Remove unnecessary Object declaration in type parameter
Change-Id: I466a2d43e9f9d3effd3860761a97855110b71781
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -18,7 +18,7 @@ package org.onosproject.event; | ... | @@ -18,7 +18,7 @@ package org.onosproject.event; |
| 18 | /** | 18 | /** |
| 19 | * Abstraction of an of a time-stamped event pertaining to an arbitrary subject. | 19 | * Abstraction of an of a time-stamped event pertaining to an arbitrary subject. |
| 20 | */ | 20 | */ |
| 21 | -public interface Event<T extends Enum, S extends Object> { | 21 | +public interface Event<T extends Enum, S> { |
| 22 | 22 | ||
| 23 | /** | 23 | /** |
| 24 | * Returns the timestamp of when the event occurred, given in milliseconds | 24 | * Returns the timestamp of when the event occurred, given in milliseconds | ... | ... |
-
Please register or login to post a comment