From e3b7a9c657a6a5f5a7a8f3c7ee4fdff1aee6410f Mon Sep 17 00:00:00 2001 From: "David A. Madore" Date: Tue, 13 Apr 2010 15:21:41 +0200 Subject: Framework for handling attributes. --- org/madore/damlengine/TodoDeque.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'org/madore/damlengine/TodoDeque.java') 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 them) { + public static void registerAtEnd(Collection them) { todoDeque.addAll(them); } @@ -28,7 +28,7 @@ public final class TodoDeque { todoDeque.addFirst(it); } - public static void registerAtStart(Collection them) { + public static void registerAtStart(Collection them) { todoDeque.addAll(0, them); } -- cgit v1.2.3