User: schaefera
  Date: 01/07/20 16:14:57

  Modified:    src/main/org/jboss/management EJBDataCollector.java
  Log:
  Removed System.out messages.
  
  Revision  Changes    Path
  1.4       +1 -7      jboss/src/main/org/jboss/management/EJBDataCollector.java
  
  Index: EJBDataCollector.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/management/EJBDataCollector.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- EJBDataCollector.java     2001/07/20 20:07:16     1.3
  +++ EJBDataCollector.java     2001/07/20 23:14:57     1.4
  @@ -43,7 +43,7 @@
   *
   * @author <a href="mailto:[EMAIL PROTECTED]";>Marc Fleury</a>
   * @author <a href="mailto:[EMAIL PROTECTED]";>Andreas Schaefer</a>
  -* @version $Revision: 1.3 $
  +* @version $Revision: 1.4 $
   *
   *  <p><b>Revisions:</b>
   *  <p><b>20010718 andreas schaefer:</b>
  @@ -79,7 +79,6 @@
      // -------------------------------------------------------------------------  
   
      public Collection refresh( MBeanServer pServer ) {
  -      System.err.println( "EJBDataCollector.refresh(), start <<<<================" 
);
         Collection lReturn = new ArrayList();
         try {
            // Look up all the registered Containers for the EJB Module and loop 
through
  @@ -87,7 +86,6 @@
            Iterator i = pServer.queryNames( new ObjectName( "Management:*" ), null 
).iterator();
            while( i.hasNext() ) {
               ObjectName lName = (ObjectName) i.next();
  -            System.err.println( "===>>> Got Object Name: " + lName );
               if( lName.getKeyProperty( "jndiName" ) == null ) {
                  continue;
               }
  @@ -117,13 +115,9 @@
               if( lContainer.getBeanMetaData().isMessageDriven() ) {
                  lBeans.add( new JBossMessageDrivenBean( 
lContainer.getBeanMetaData().getEjbName() ) );
               }
  -            System.out.println( "==>> Tries to get statistics" );
               // Only to test the Statistics Gathering
               if( lContainer instanceof EntityContainer ) {
                  Map lStatistics = ( (EntityContainer) lContainer 
).retrieveStatistic();
  -               if( lStatistics != null ) {
  -                  System.out.println( "==>> Statistics: " + lStatistics );
  -               }
               }
            }
            i = lApplications.keySet().iterator();
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to