[jboss-cvs] JBossAS SVN: r69116 - trunk/server/src/main/org/jboss/deployment.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Jan 18 11:38:16 EST 2008


Author: alesj
Date: 2008-01-18 11:38:16 -0500 (Fri, 18 Jan 2008)
New Revision: 69116

Modified:
   trunk/server/src/main/org/jboss/deployment/EARStructure.java
Log:
TODO mark on the IOE for lib and persistence.xml lookup.

Modified: trunk/server/src/main/org/jboss/deployment/EARStructure.java
===================================================================
--- trunk/server/src/main/org/jboss/deployment/EARStructure.java	2008-01-18 16:29:43 UTC (rev 69115)
+++ trunk/server/src/main/org/jboss/deployment/EARStructure.java	2008-01-18 16:38:16 UTC (rev 69116)
@@ -75,7 +75,6 @@
 
    /**
     * Set the relative order to 1000 by default
-    *
     */   
    public EARStructure()
    {
@@ -107,7 +106,7 @@
 
    /**
     * Get the schema resolver
-    * @param resolver
+    * @return the schema resolver
     */
    public SchemaBindingResolver getResolver()
    {
@@ -115,7 +114,7 @@
    }
    /**
     * Set the schema resolver
-    * @param resolver
+    * @param resolver the schema resolver
     */
    public void setResolver(SchemaBindingResolver resolver)
    {
@@ -124,7 +123,7 @@
 
    public boolean determineStructure(VirtualFile root, VirtualFile parent, VirtualFile file, StructureMetaData metaData, VFSStructuralDeployers deployers)
    {
-      ContextInfo context = null;
+      ContextInfo context;
       boolean valid;
       boolean trace = log.isTraceEnabled();
       try
@@ -211,6 +210,7 @@
                   }
                   catch(IOException e)
                   {
+                     // TODO - should we throw this fwd?
                      log.warn("Exception searching for META-INF/persistence.xml in " + archive.getPathName() + ", " + e);
                   }
                }
@@ -220,6 +220,7 @@
          }
          catch (IOException e)
          {
+            // TODO - should we throw this fwd?
             log.warn("Exception while searching for lib dir: " + e);
          }
 




More information about the jboss-cvs-commits mailing list