Browse Source

Logging plugin now compiles ¬_¬

Issue 490 / Issue 1261 / Issue 1262

git-svn-id: http://svn.dmdirc.com/trunk@4091 00569f92-eb28-0410-84fd-f71c24880f
tags/0.6
Chris Smith 16 years ago
parent
commit
f0cec692bf
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/com/dmdirc/addons/logging/LoggingPlugin.java

+ 1
- 1
src/com/dmdirc/addons/logging/LoggingPlugin.java View File

@@ -642,7 +642,7 @@ public final class LoggingPlugin extends Plugin implements ActionListener {
642 642
 				directory.append(File.separatorChar);
643 643
 			}
644 644
 			
645
-			if (!new File(directory.toString())).exists() && !(new File(directory.toString())).mkdirs()) {
645
+			if (!new File(directory.toString()).exists() && !(new File(directory.toString())).mkdirs()) {
646 646
 				Logger.userError(ErrorLevel.LOW, "Unable to create date dirs");
647 647
 			}
648 648
 		}

Loading…
Cancel
Save