Code formating and whitespace cleanup
[jpim.git] / src / de / j32 / pimstuff / conduit / Registry.java
index 6c10e97..d373601 100644 (file)
@@ -5,11 +5,12 @@ import org.springframework.context.support.FileSystemXmlApplicationContext;
 
 public class Registry
 {
-       static ApplicationContext context_ = new FileSystemXmlApplicationContext("conduits.xml");
-       
-       public static Conduit get(String k)
-       {
-               return context_.getBean(k, Conduit.class);
-       }
-               
+    static ApplicationContext context_ = new FileSystemXmlApplicationContext(
+            "conduits.xml");
+
+    public static Conduit get(String k)
+    {
+        return context_.getBean(k, Conduit.class);
+    }
+
 }