[jboss-cvs] JBossAS SVN: r68578 - in projects/microcontainer/trunk: deployers-vfs/src/main/org/jboss/deployers/vfs/plugins/structure and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sat Dec 29 08:40:24 EST 2007


Author: alesj
Date: 2007-12-29 08:40:23 -0500 (Sat, 29 Dec 2007)
New Revision: 68578

Modified:
   projects/microcontainer/trunk/deployers-structure-spi/src/main/org/jboss/deployers/structure/spi/helpers/AbstractDeploymentUnit.java
   projects/microcontainer/trunk/deployers-vfs/src/main/org/jboss/deployers/vfs/plugins/structure/AbstractVFSDeploymentUnit.java
Log:
toString info.

Modified: projects/microcontainer/trunk/deployers-structure-spi/src/main/org/jboss/deployers/structure/spi/helpers/AbstractDeploymentUnit.java
===================================================================
--- projects/microcontainer/trunk/deployers-structure-spi/src/main/org/jboss/deployers/structure/spi/helpers/AbstractDeploymentUnit.java	2007-12-27 13:03:27 UTC (rev 68577)
+++ projects/microcontainer/trunk/deployers-structure-spi/src/main/org/jboss/deployers/structure/spi/helpers/AbstractDeploymentUnit.java	2007-12-29 13:40:23 UTC (rev 68578)
@@ -459,4 +459,9 @@
       super.writeExternal(out);
       out.writeObject(deploymentContext);
    }
+
+   public String toString()
+   {
+      return String.valueOf(deploymentContext);
+   }
 }

Modified: projects/microcontainer/trunk/deployers-vfs/src/main/org/jboss/deployers/vfs/plugins/structure/AbstractVFSDeploymentUnit.java
===================================================================
--- projects/microcontainer/trunk/deployers-vfs/src/main/org/jboss/deployers/vfs/plugins/structure/AbstractVFSDeploymentUnit.java	2007-12-27 13:03:27 UTC (rev 68577)
+++ projects/microcontainer/trunk/deployers-vfs/src/main/org/jboss/deployers/vfs/plugins/structure/AbstractVFSDeploymentUnit.java	2007-12-29 13:40:23 UTC (rev 68578)
@@ -21,9 +21,6 @@
  */
 package org.jboss.deployers.vfs.plugins.structure;
 
-import java.io.IOException;
-import java.io.ObjectInput;
-import java.io.ObjectOutput;
 import java.util.List;
 
 import org.jboss.deployers.structure.spi.helpers.AbstractDeploymentUnit;
@@ -120,18 +117,4 @@
    {
       return (VFSDeploymentContext) super.getDeploymentContext();
    }
-
-   public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
-   {
-      super.readExternal(in);
-   }
-
-   /**
-    * @param out the output
-    * @throws IOException for any error
-    */
-   public void writeExternal(ObjectOutput out) throws IOException
-   {
-      super.writeExternal(out);
-   }
 }




More information about the jboss-cvs-commits mailing list