[jboss-cvs] JBossAS SVN: r87441 - projects/jboss-osgi/trunk/runtime/deployer/src/main/java/org/jboss/osgi/deployer.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Apr 16 11:52:23 EDT 2009


Author: thomas.diesler at jboss.com
Date: 2009-04-16 11:52:23 -0400 (Thu, 16 Apr 2009)
New Revision: 87441

Modified:
   projects/jboss-osgi/trunk/runtime/deployer/src/main/java/org/jboss/osgi/deployer/BundleStructureDeployer.java
Log:
Optimize imports

Modified: projects/jboss-osgi/trunk/runtime/deployer/src/main/java/org/jboss/osgi/deployer/BundleStructureDeployer.java
===================================================================
--- projects/jboss-osgi/trunk/runtime/deployer/src/main/java/org/jboss/osgi/deployer/BundleStructureDeployer.java	2009-04-16 15:47:56 UTC (rev 87440)
+++ projects/jboss-osgi/trunk/runtime/deployer/src/main/java/org/jboss/osgi/deployer/BundleStructureDeployer.java	2009-04-16 15:52:23 UTC (rev 87441)
@@ -23,7 +23,6 @@
 
 // $Id$
 
-import java.io.IOException;
 import java.util.jar.Attributes;
 import java.util.jar.Manifest;
 
@@ -33,7 +32,6 @@
 import org.jboss.deployers.vfs.spi.structure.StructureContext;
 import org.jboss.virtual.VFSUtils;
 import org.jboss.virtual.VirtualFile;
-import org.jboss.virtual.plugins.context.jar.JarUtils;
 import org.osgi.framework.Constants;
 
 /**
@@ -44,16 +42,17 @@
  */
 public class BundleStructureDeployer extends AbstractVFSStructureDeployer
 {
-   /*
-    * * Sets the default relative order 9000.
+   /**
+    * Sets the default relative order 9000.
     */
    public BundleStructureDeployer()
    {
       setRelativeOrder(9000);
    }
 
-   /*
-    * * Determine the structure of a bundle deployment
+   /**
+    * Determine the structure of a bundle deployment
+    * 
     * @param context the structure context
     * @return true when it recognised the context
     * @throws DeploymentException for an error




More information about the jboss-cvs-commits mailing list