]> git.aero2k.de Git - tmp/jakarta-migration.git/commitdiff
CSPACE-5012: Remove some System.out messages added while debugging.
authorRay Lee <rhlee@berkeley.edu>
Thu, 31 May 2012 02:42:19 +0000 (19:42 -0700)
committerRay Lee <rhlee@berkeley.edu>
Thu, 31 May 2012 02:42:19 +0000 (19:42 -0700)
services/imports/service/src/main/java/org/collectionspace/services/imports/TemplateExpander.java

index 0a835383801ff5aa8f51bc9807ae614e3fa4fad8..03e2158500e3c185244b6e5ac04147176e7f2b3e 100644 (file)
@@ -239,15 +239,9 @@ public class TemplateExpander {
         // namespace-qualified elements, the second for unqualified elements.
         // (There may be a more elegant way to do this with a single XPath expression,
         // via an OR operator or the like.)
-        System.out.println("before setting inAuthority value");
         inAuthorityValue = extractValueFromXmlFragment(IN_AUTHORITY_NAMESPACE_XPATH, xmlFragment);
-        System.out.println("after setting namespaced inAuthority value: " + inAuthorityValue);
         if (Tools.isBlank(inAuthorityValue)) {
-            System.out.println("in if block ...");
             inAuthorityValue = extractValueFromXmlFragment(IN_AUTHORITY_NO_NAMESPACE_XPATH, xmlFragment);
-            System.out.println("after setting non-namespaced inAuthority value: " + inAuthorityValue);
-        } else {
-          System.out.println("bypassed if block ...");
         }
         return inAuthorityValue;
     }