Browse Source

No longer check for formatter.numeric_<ircd>_<xxx> settings

changes/34/734/1
Chris Smith 15 years ago
parent
commit
11f13651ad
1 changed files with 1 additions and 4 deletions
  1. 1
    4
      src/com/dmdirc/Server.java

+ 1
- 4
src/com/dmdirc/Server.java View File

@@ -1279,13 +1279,10 @@ public class Server extends WritableFrameContainer implements
1279 1279
             snumeric = "0" + snumeric;
1280 1280
         }
1281 1281
 
1282
-        final String withIrcd = "numeric_" + parser.getServerSoftwareType() + "_" + snumeric;
1283 1282
         final String sansIrcd = "numeric_" + snumeric;
1284 1283
         StringBuffer target = new StringBuffer("");
1285 1284
 
1286
-        if (getConfigManager().hasOptionString("formatter", withIrcd)) {
1287
-            target = new StringBuffer(withIrcd);
1288
-        } else if (getConfigManager().hasOptionString("formatter", sansIrcd)) {
1285
+        if (getConfigManager().hasOptionString("formatter", sansIrcd)) {
1289 1286
             target = new StringBuffer(sansIrcd);
1290 1287
         } else if (getConfigManager().hasOptionString("formatter", "numeric_unknown")) {
1291 1288
             target = new StringBuffer("numeric_unknown");

Loading…
Cancel
Save