direct op
[mir.git] / source / mir / misc / Configuration.java
index a31e93d..b8f5d4d 100755 (executable)
@@ -21,6 +21,7 @@ public class Configuration {
   private static HashMap  confs = new HashMap(); // key: conffilename, confHash
   private static HashMap c = new HashMap();
   private String          confFilename;
+  
   private static String   defaultconfFilename;
   private static int      instances=0;
   static ResourceBundle conf;
@@ -85,7 +86,7 @@ public class Configuration {
    * Checks if open posting should be direct or indirect
    * @return true if open posting should be direct
    */
-  public static boolean directOp() {  // default
+  public static boolean directOp() {
     String op = conf.getString("DirectOpenposting");
     if(op.equals("yes") || op.equals("Yes") || op.equals("y") || op.equals("Y")){
       return true;