You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by dk...@apache.org on 2012/05/15 21:59:03 UTC

svn commit: r1338869 - in /aries/branches/blueprint-0.3.2-fixes/blueprint-core: ./ src/main/java/org/apache/aries/blueprint/namespace/NamespaceHandlerRegistryImpl.java

Author: dkulp
Date: Tue May 15 19:59:03 2012
New Revision: 1338869

URL: http://svn.apache.org/viewvc?rev=1338869&view=rev
Log:
remove the printlns

Modified:
    aries/branches/blueprint-0.3.2-fixes/blueprint-core/   (props changed)
    aries/branches/blueprint-0.3.2-fixes/blueprint-core/src/main/java/org/apache/aries/blueprint/namespace/NamespaceHandlerRegistryImpl.java

Propchange: aries/branches/blueprint-0.3.2-fixes/blueprint-core/
------------------------------------------------------------------------------
  Merged /aries/trunk/blueprint/blueprint-core:r1203479

Modified: aries/branches/blueprint-0.3.2-fixes/blueprint-core/src/main/java/org/apache/aries/blueprint/namespace/NamespaceHandlerRegistryImpl.java
URL: http://svn.apache.org/viewvc/aries/branches/blueprint-0.3.2-fixes/blueprint-core/src/main/java/org/apache/aries/blueprint/namespace/NamespaceHandlerRegistryImpl.java?rev=1338869&r1=1338868&r2=1338869&view=diff
==============================================================================
--- aries/branches/blueprint-0.3.2-fixes/blueprint-core/src/main/java/org/apache/aries/blueprint/namespace/NamespaceHandlerRegistryImpl.java (original)
+++ aries/branches/blueprint-0.3.2-fixes/blueprint-core/src/main/java/org/apache/aries/blueprint/namespace/NamespaceHandlerRegistryImpl.java Tue May 15 19:59:03 2012
@@ -447,7 +447,6 @@ public class NamespaceHandlerRegistryImp
                 findCompatibleNamespaceHandler(ns);
             }
             URL url = bundle.getResource("OSGI-INF/blueprint/schema.map");
-            System.out.println("MAP: " + url);
             if (url != null) {
                 InputStream ins = null;
                 try {
@@ -466,7 +465,6 @@ public class NamespaceHandlerRegistryImp
                     }
                 }
             }
-            System.out.println("MAP: " + schemaMap);
             for (Object ns : schemaMap.keySet()) {
                 try {
                     this.namespaces.remove(new URI(ns.toString()));
@@ -474,7 +472,6 @@ public class NamespaceHandlerRegistryImp
                     //ignore
                 }
             }
-            System.out.println("NS: " + namespaces);
         }
 
         public boolean isComplete() {