Selaa lähdekoodia

Don't double format debug info.

pull/94/head
Chris Smith 9 vuotta sitten
vanhempi
commit
ee14e37f3f
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1
    1
      irc/src/com/dmdirc/parser/irc/processors/IRCProcessor.java

+ 1
- 1
irc/src/com/dmdirc/parser/irc/processors/IRCProcessor.java Näytä tiedosto

@@ -70,7 +70,7 @@ public abstract class IRCProcessor {
70 70
      * @param args Formatting String Options
71 71
      */
72 72
     protected final void callDebugInfo(final int level, final String data, final Object... args) {
73
-        parser.callDebugInfo(level, String.format(data, args));
73
+        parser.callDebugInfo(level, data, args);
74 74
     }
75 75
 
76 76
     /**

Loading…
Peruuta
Tallenna