[jboss-cvs] JBossAS SVN: r58440 - trunk/system-jmx/src/main/org/jboss/system

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Nov 16 01:24:53 EST 2006


Author: anil.saldhana at jboss.com
Date: 2006-11-16 01:24:51 -0500 (Thu, 16 Nov 2006)
New Revision: 58440

Modified:
   trunk/system-jmx/src/main/org/jboss/system/ServiceContext.java
Log:
JBAS-3558: Service should be transient

Modified: trunk/system-jmx/src/main/org/jboss/system/ServiceContext.java
===================================================================
--- trunk/system-jmx/src/main/org/jboss/system/ServiceContext.java	2006-11-16 06:14:01 UTC (rev 58439)
+++ trunk/system-jmx/src/main/org/jboss/system/ServiceContext.java	2006-11-16 06:24:51 UTC (rev 58440)
@@ -78,7 +78,7 @@
    public List<ServiceContext> dependsOnMe = new LinkedList<ServiceContext>();
    
    /** The fancy proxy to my service calls **/
-   public Service proxy;
+   public transient Service proxy;
 
    /** Cause for failure */
    public Throwable problem;




More information about the jboss-cvs-commits mailing list