[Jboss-cvs] JBossAS SVN: r56187 - trunk/system/src/main/org/jboss/system

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Aug 23 13:47:37 EDT 2006


Author: anil.saldhana at jboss.com
Date: 2006-08-23 13:47:36 -0400 (Wed, 23 Aug 2006)
New Revision: 56187

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

Modified: trunk/system/src/main/org/jboss/system/ServiceContext.java
===================================================================
--- trunk/system/src/main/org/jboss/system/ServiceContext.java	2006-08-23 17:27:26 UTC (rev 56186)
+++ trunk/system/src/main/org/jboss/system/ServiceContext.java	2006-08-23 17:47:36 UTC (rev 56187)
@@ -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