You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Command.java 302B

123456789101112131415
  1. package com.dmdirc.commandparser.commands;
  2. import com.dmdirc.interfaces.CommandController;
  3. /**
  4. * @deprecated Use {@link BaseCommand} directly.
  5. */
  6. @Deprecated
  7. public abstract class Command extends BaseCommand {
  8. public Command(CommandController controller) {
  9. super(controller);
  10. }
  11. }