Browse Source

Fix things.

pull/776/head
Shane Mc Cormack 7 years ago
parent
commit
8f55973df2

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

@@ -33,7 +33,7 @@ import javax.annotation.Nonnull;
33 33
 import javax.inject.Inject;
34 34
 
35 35
 /**
36
- * Allows the user to save the config file.
36
+ * Allows the user to reload the formatter.
37 37
  */
38 38
 public final class ReloadFormat extends BaseCommand implements IntelligentCommand {
39 39
 

+ 3
- 1
src/main/java/com/dmdirc/ui/messages/MultiEventFormatProvider.java View File

@@ -55,6 +55,8 @@ public class MultiEventFormatProvider implements EventFormatProvider {
55 55
 
56 56
     @Override
57 57
     public void reload() {
58
-        for (final EventFormatProvider evp : providers) { evp.reload(); }
58
+        for (final EventFormatProvider evp : providers) {
59
+            evp.reload();
60
+        }
59 61
     }
60 62
 }

Loading…
Cancel
Save