summaryrefslogtreecommitdiffstats
path: root/org/madore/damlengine/TodoDeque.java
diff options
context:
space:
mode:
authorDavid A. Madore <david@procyon.(none)>2010-04-13 15:21:41 +0200
committerDavid A. Madore <david@procyon.(none)>2010-04-13 15:21:41 +0200
commite3b7a9c657a6a5f5a7a8f3c7ee4fdff1aee6410f (patch)
tree9a7f411ce9333aa6c67cd66522f4aaf60c35d194 /org/madore/damlengine/TodoDeque.java
parent734a0b78ea5508f243caf18a50e36ac8918e11db (diff)
downloaddamlengine-e3b7a9c657a6a5f5a7a8f3c7ee4fdff1aee6410f.tar.gz
damlengine-e3b7a9c657a6a5f5a7a8f3c7ee4fdff1aee6410f.tar.bz2
damlengine-e3b7a9c657a6a5f5a7a8f3c7ee4fdff1aee6410f.zip
Framework for handling attributes.
Diffstat (limited to 'org/madore/damlengine/TodoDeque.java')
-rw-r--r--org/madore/damlengine/TodoDeque.java4
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);
}