Bladeren bron

Remove unused imports.

pull/775/head
Shane Mc Cormack 7 jaren geleden
bovenliggende
commit
0f3bd81d55
1 gewijzigde bestanden met toevoegingen van 6 en 4 verwijderingen
  1. 6
    4
      src/main/java/com/dmdirc/commandparser/commands/global/ReloadFormat.java

+ 6
- 4
src/main/java/com/dmdirc/commandparser/commands/global/ReloadFormat.java Bestand weergeven

29
 import com.dmdirc.interfaces.config.IdentityController;
29
 import com.dmdirc.interfaces.config.IdentityController;
30
 import com.dmdirc.ui.input.AdditionalTabTargets;
30
 import com.dmdirc.ui.input.AdditionalTabTargets;
31
 import com.dmdirc.ui.messages.EventFormatProvider;
31
 import com.dmdirc.ui.messages.EventFormatProvider;
32
-import com.dmdirc.ui.messages.MultiEventFormatProvider;
33
-import com.dmdirc.ui.messages.YamlEventFormatProvider;
34
 
32
 
35
 import javax.annotation.Nonnull;
33
 import javax.annotation.Nonnull;
36
 import javax.inject.Inject;
34
 import javax.inject.Inject;
40
  */
38
  */
41
 public final class ReloadFormat extends BaseCommand implements IntelligentCommand {
39
 public final class ReloadFormat extends BaseCommand implements IntelligentCommand {
42
 
40
 
43
-    /** A command info object for this command. */
41
+    /**
42
+     * A command info object for this command.
43
+     */
44
     public static final CommandInfo INFO = new BaseCommandInfo("reloadformat",
44
     public static final CommandInfo INFO = new BaseCommandInfo("reloadformat",
45
             "reloadformat - force the client to reload the format.yml file",
45
             "reloadformat - force the client to reload the format.yml file",
46
             CommandType.TYPE_GLOBAL);
46
             CommandType.TYPE_GLOBAL);
47
-    /** Format provider for events. */
47
+    /**
48
+     * Format provider for events.
49
+     */
48
     private final EventFormatProvider formatProvider;
50
     private final EventFormatProvider formatProvider;
49
 
51
 
50
     /**
52
     /**

Laden…
Annuleren
Opslaan