[jboss-cvs] JBossAS SVN: r65692 - branches/Branch_4_2/iiop/src/main/org/jboss/proxy/ejb.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Sep 28 11:25:23 EDT 2007


Author: bdecoste
Date: 2007-09-28 11:25:22 -0400 (Fri, 28 Sep 2007)
New Revision: 65692

Modified:
   branches/Branch_4_2/iiop/src/main/org/jboss/proxy/ejb/HomeHandleImplIIOP.java
Log:
[EJBTHREE-1027] [JBAS-4572] removed my silly logging

Modified: branches/Branch_4_2/iiop/src/main/org/jboss/proxy/ejb/HomeHandleImplIIOP.java
===================================================================
--- branches/Branch_4_2/iiop/src/main/org/jboss/proxy/ejb/HomeHandleImplIIOP.java	2007-09-28 15:22:47 UTC (rev 65691)
+++ branches/Branch_4_2/iiop/src/main/org/jboss/proxy/ejb/HomeHandleImplIIOP.java	2007-09-28 15:25:22 UTC (rev 65692)
@@ -66,7 +66,6 @@
    public HomeHandleImplIIOP(String ior) 
    {
       this.ior = ior;
-      System.out.println("!!! new HomeHandleImplIIOP1");
    }
    
    /**
@@ -77,7 +76,6 @@
    public HomeHandleImplIIOP(EJBHome home) 
    {
       this((org.omg.CORBA.Object)home);
-      System.out.println("!!! new HomeHandleImplIIOP2");
    }
    
    /**
@@ -89,7 +87,6 @@
    {
       this.ior = CorbaORB.getInstance().object_to_string(home);
       this.stubClass = home.getClass();
-      System.out.println("!!! new HomeHandleImplIIOP3");
    }
    
    // Public --------------------------------------------------------
@@ -126,7 +123,6 @@
          return null;
       
       // Already the correct type
-      System.out.println("!!!! narrow " + stubClass + " " + obj);
       if (stubClass.isAssignableFrom(obj.getClass()))
          return (EJBHome) obj;
       
@@ -151,7 +147,6 @@
    {
       HandleDelegate delegate = HandleDelegateImpl.getDelegate();
       delegate.writeEJBHome(getEJBHome(), oostream);
-      System.out.println("!!!! writeObject " + stubClass );
    }
 
    public void readObject(ObjectInputStream oistream) throws IOException, ClassNotFoundException
@@ -160,6 +155,5 @@
       EJBHome obj = delegate.readEJBHome(oistream);
       this.ior = CorbaORB.getInstance().object_to_string((org.omg.CORBA.Object) obj);
       this.stubClass = obj.getClass();
-      System.out.println("!!!! readObject " + stubClass );
    }
 }




More information about the jboss-cvs-commits mailing list