Coding Style cleanup
[mir.git] / source / mircoders / producer / Producer.java
index f62dcba..cb2ead1 100755 (executable)
@@ -14,22 +14,22 @@ import mircoders.storage.*;
 
 abstract public class Producer {
 
-       protected static String producerDocRoot = MirConfig.getProp("Producer.DocRoot");
+  protected static String producerDocRoot = MirConfig.getProp("Producer.DocRoot");
   protected static String producerStorageRoot = MirConfig.getProp("Producer.StorageRoot");
-       protected static String producerProductionHost = MirConfig.getProp("Producer.ProductionHost");
-       protected static String producerOpenAction = MirConfig.getProp("Producer.OpenAction");;
-       protected static Logfile theLog = Logfile.getInstance(MirConfig.getProp("Home") + MirConfig.getProp("Producer.Logfile"));
-       protected static ModuleTopics         topicsModule;
+  protected static String producerProductionHost = MirConfig.getProp("Producer.ProductionHost");
+  protected static String producerOpenAction = MirConfig.getProp("Producer.OpenAction");;
+  protected static Logfile theLog = Logfile.getInstance(MirConfig.getProp("Home") + "/" + MirConfig.getProp("Producer.Logfile"));
+  protected static ModuleTopics         topicsModule;
   protected static ModuleLinksImcs      linksImcsModule;
-       protected static ModuleSchwerpunkt    schwerpunktModule;
-       protected static ModuleFeature        featureModule;
-       protected static ModuleContent        contentModule;
-       protected static ModuleImages         imageModule;
-       protected static ModuleUploadedMedia  uploadedMediaModule;
+  protected static ModuleSchwerpunkt    schwerpunktModule;
+  protected static ModuleFeature        featureModule;
+  protected static ModuleContent        contentModule;
+  protected static ModuleImages         imageModule;
+  protected static ModuleUploadedMedia  uploadedMediaModule;
 
   static {
                // init
-    try {
+   try {
                        contentModule = new ModuleContent(DatabaseContent.getInstance());
                        topicsModule = new ModuleTopics(DatabaseTopics.getInstance());
             linksImcsModule = new ModuleLinksImcs(DatabaseLinksImcs.getInstance());
@@ -78,7 +78,7 @@ abstract public class Producer {
 
                        printHTML(htmlout, "Produced <a href=\"" + producerProductionHost+  filename + "\">" + filename + "</a>");
                        //theLog.printInfo("Produced: " + producerStorageRoot + filename);
-      //theLog.printDebugInfo("free mem:" + java.lang.Runtime.getRuntime().freeMemory());
+                       //theLog.printDebugInfo("free mem:" + java.lang.Runtime.getRuntime().freeMemory());
       //theLog.printDebugInfo("total mem:" + java.lang.Runtime.getRuntime().totalMemory());
                        return true;