mcconnell    02/02/06 01:46:44

  Modified:    apps/enterprise/orb/src/java/org/apache/orb ORBContext.java
               apps/enterprise/orb/src/java/org/apache/orb/CORBA/kernel
                        DefaultLoader.java
  Log:
  removed trace messages
  
  Revision  Changes    Path
  1.2       +0 -8      
jakarta-avalon-cornerstone/apps/enterprise/orb/src/java/org/apache/orb/ORBContext.java
  
  Index: ORBContext.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-cornerstone/apps/enterprise/orb/src/java/org/apache/orb/ORBContext.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ORBContext.java   6 Feb 2002 09:35:07 -0000       1.1
  +++ ORBContext.java   6 Feb 2002 09:46:43 -0000       1.2
  @@ -64,9 +64,6 @@
           m_parent = context;
           m_config = config;
           m_default_config = defaults;
  -
  -        System.out.println( "setting app config to: " + m_config.getName() + 
", " + config.getChildren().length );
  -        System.out.println( "setting defaults config to: " + 
m_default_config.getName() + ", " + defaults.getChildren().length );
       }
   
       
//=============================================================================
  @@ -117,20 +114,16 @@
       {
           if( m_config != null )
           {
  -            System.out.println("looking up app initializer config for : " + 
name + " in " + m_config.getName() );
               Configuration config = getByClassName( m_config, name );
               if( config != null ) return config;
           }
   
  -        System.out.println("\tapplication profile return null" );
           if( m_default_config != null )
           {
  -            System.out.println("looking up default initializer config for : 
" + name + " in " + m_default_config.getName() );
               Configuration def = getByClassName( m_default_config, name );
               if( def != null ) return def;
           }
   
  -        System.out.println("\tdefault profile return null" );
           if( policy ) return new DefaultConfiguration( name, "-" );
           return null;
       }
  @@ -140,7 +133,6 @@
       */
       private Configuration getByClassName( Configuration config, String name )
       {
  -        System.out.println("\tlooking in " + config.getName() + ", " + 
config.getChildren().length );
           Configuration[] children = config.getChildren("initializer");
           for( int i=0; i<children.length; i++ )
           {
  
  
  
  1.2       +0 -1      
jakarta-avalon-cornerstone/apps/enterprise/orb/src/java/org/apache/orb/CORBA/kernel/DefaultLoader.java
  
  Index: DefaultLoader.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-cornerstone/apps/enterprise/orb/src/java/org/apache/orb/CORBA/kernel/DefaultLoader.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- DefaultLoader.java        6 Feb 2002 09:37:19 -0000       1.1
  +++ DefaultLoader.java        6 Feb 2002 09:46:43 -0000       1.2
  @@ -474,7 +474,6 @@
               {
                   config = context.getConfigurationByClassName( cls_names[i] );
                   final String name = config.getAttribute("name", null );
  -                System.out.println("Loading initializer config: " +  
cls_names[i] + ", name: " + name );
   
                   //
                   // provide the initalizer with a logger
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to