Mass whitespace changes (Style Warnings)
[aaf/authz.git] / misc / env / src / main / java / org / onap / aaf / misc / env / jaxb / JAXBumar.java
index fe3f014..30345e7 100644 (file)
@@ -85,7 +85,7 @@ public class JAXBumar {
         }\r
         \r
         public Unmarshaller get(Schema schema) throws JAXBException {\r
-            if(s != schema) {\r
+            if (s != schema) {\r
                 u.setSchema(s = schema);\r
             }\r
             return u;\r
@@ -135,7 +135,7 @@ public class JAXBumar {
         Pool<SUnmarshaller> mp;\r
         synchronized(pools) {\r
             mp = pools.get(classes);\r
-            if(mp==null) {\r
+            if (mp==null) {\r
                 pools.put(classes,mp = new Pool<SUnmarshaller>(new Creator(classes)));\r
             }\r
         }        \r
@@ -174,7 +174,7 @@ public class JAXBumar {
     \r
     @SuppressWarnings("unchecked")\r
     public<O> O unmarshal(LogTarget env, String xml) throws JAXBException, APIException {\r
-        if(xml==null) throw new JAXBException("Null Input for String unmarshal");\r
+        if (xml==null) throw new JAXBException("Null Input for String unmarshal");\r
         Pooled<SUnmarshaller> s = mpool.get(env);\r
         try {\r
                 return (O)s.content.get(schema).unmarshal(\r