Committed by
Gerrit Code Review
Remove type paramter bounds because Object is implicitly inherited
Change-Id: I7b933d924192d4b6bd079969cf4702d1c08f684f
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -22,7 +22,7 @@ import org.joda.time.LocalDateTime; | ... | @@ -22,7 +22,7 @@ import org.joda.time.LocalDateTime; |
22 | /** | 22 | /** |
23 | * Base event implementation. | 23 | * Base event implementation. |
24 | */ | 24 | */ |
25 | -public class AbstractEvent<T extends Enum, S extends Object> implements Event<T, S> { | 25 | +public class AbstractEvent<T extends Enum, S> implements Event<T, S> { |
26 | 26 | ||
27 | private final long time; | 27 | private final long time; |
28 | private final T type; | 28 | private final T type; | ... | ... |
-
Please register or login to post a comment