Browse Source

Remove unused imports.

pull/775/head
Shane Mc Cormack 7 years ago
parent
commit
0f3bd81d55

+ 6
- 4
src/main/java/com/dmdirc/commandparser/commands/global/ReloadFormat.java View File

@@ -29,8 +29,6 @@ import com.dmdirc.interfaces.WindowModel;
29 29
 import com.dmdirc.interfaces.config.IdentityController;
30 30
 import com.dmdirc.ui.input.AdditionalTabTargets;
31 31
 import com.dmdirc.ui.messages.EventFormatProvider;
32
-import com.dmdirc.ui.messages.MultiEventFormatProvider;
33
-import com.dmdirc.ui.messages.YamlEventFormatProvider;
34 32
 
35 33
 import javax.annotation.Nonnull;
36 34
 import javax.inject.Inject;
@@ -40,11 +38,15 @@ import javax.inject.Inject;
40 38
  */
41 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 44
     public static final CommandInfo INFO = new BaseCommandInfo("reloadformat",
45 45
             "reloadformat - force the client to reload the format.yml file",
46 46
             CommandType.TYPE_GLOBAL);
47
-    /** Format provider for events. */
47
+    /**
48
+     * Format provider for events.
49
+     */
48 50
     private final EventFormatProvider formatProvider;
49 51
 
50 52
     /**

Loading…
Cancel
Save