Explorar el Código

Remove deprecated constructors.

Change-Id: Ied99773656e63d8365b9c026e5a588b5bf6bc1a6
Depends-On: I50ebe298668913a1fdfcbffacc24e20bd45a3bf2
Reviewed-on: http://gerrit.dmdirc.com/2916
Reviewed-by: Greg Holmes <greg@dmdirc.com>
Automatic-Compile: DMDirc Build Manager
tags/0.8rc1
Chris Smith hace 10 años
padre
commit
974c61ee1b
Se han modificado 1 ficheros con 0 adiciones y 23 borrados
  1. 0
    23
      src/com/dmdirc/commandparser/CommandArguments.java

+ 0
- 23
src/com/dmdirc/commandparser/CommandArguments.java Ver fichero

@@ -50,17 +50,6 @@ public class CommandArguments {
50 50
     /** Command controller to consult for command chars, etc. */
51 51
     private final CommandController controller;
52 52
 
53
-    /**
54
-     * Creates a new command arguments parser for the specified line.
55
-     *
56
-     * @param line The line to be parsed
57
-     * @deprecated Specify a {@link CommandController}.
58
-     */
59
-    @Deprecated
60
-    public CommandArguments(final String line) {
61
-        this(CommandManager.getCommandManager(), line);
62
-    }
63
-
64 53
     /**
65 54
      * Creates a new command arguments parser for the specified line.
66 55
      *
@@ -74,18 +63,6 @@ public class CommandArguments {
74 63
         this.line = line;
75 64
     }
76 65
 
77
-    /**
78
-     * Creates a new command arguments parser for the specified words.
79
-     *
80
-     * @param words The words which form the line ot be parsed
81
-     * @since 0.6.3
82
-     * @deprecated Specify a {@link CommandController}.
83
-     */
84
-    @Deprecated
85
-    public CommandArguments(final Collection<String> words) {
86
-        this(CommandManager.getCommandManager(), words);
87
-    }
88
-
89 66
     /**
90 67
      * Creates a new command arguments parser for the specified words.
91 68
      *

Loading…
Cancelar
Guardar