diff dwtx/jface/text/DocumentCommand.d @ 156:a9566845f1cb

...
author Frank Benoit <benoit@tionex.de>
date Mon, 25 Aug 2008 19:03:46 +0200
parents f70d9508c95c
children 25f1f92fa3df
line wrap: on
line diff
--- a/dwtx/jface/text/DocumentCommand.d	Mon Aug 25 00:45:19 2008 +0200
+++ b/dwtx/jface/text/DocumentCommand.d	Mon Aug 25 19:03:46 2008 +0200
@@ -244,7 +244,7 @@
         /*
          * @see java.util.Comparator#compare(java.lang.Object, java.lang.Object)
          */
-        public int compareTo(final Object object) {
+        public int compareTo(Object object) {
             if (isEqual(object))
                 return 0;
 
@@ -331,7 +331,7 @@
          * @param command the original command
          * @param forward the direction
          */
-        public this(final List commands, final Command command, final bool forward) {
+        public this(List commands, Command command, bool forward) {
             if (commands is null || command is null)
                 throw new IllegalArgumentException();
             fIterator= forward ? commands.iterator() : new ReverseListIterator(commands.listIterator(commands.size()));