diff options
Diffstat (limited to 'org/madore/damlengine/TodoDeque.java')
| -rw-r--r-- | org/madore/damlengine/TodoDeque.java | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/org/madore/damlengine/TodoDeque.java b/org/madore/damlengine/TodoDeque.java index e030e29..037723b 100644 --- a/org/madore/damlengine/TodoDeque.java +++ b/org/madore/damlengine/TodoDeque.java @@ -20,7 +20,7 @@ public final class TodoDeque {  	todoDeque.addLast(it);      } -    public static void registerAtEnd(Collection<TodoItem> them) { +    public static void registerAtEnd(Collection<? extends TodoItem> them) {  	todoDeque.addAll(them);      } @@ -28,7 +28,7 @@ public final class TodoDeque {  	todoDeque.addFirst(it);      } -    public static void registerAtStart(Collection<TodoItem> them) { +    public static void registerAtStart(Collection<? extends TodoItem> them) {  	todoDeque.addAll(0, them);      } | 
