[jboss-cvs] JBossAS SVN: r83887 - trunk/system/src/main/org/jboss/system/server/profileservice/repository.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Feb 5 04:06:46 EST 2009


Author: alesj
Date: 2009-02-05 04:06:46 -0500 (Thu, 05 Feb 2009)
New Revision: 83887

Modified:
   trunk/system/src/main/org/jboss/system/server/profileservice/repository/MutableDeploymentRepository.java
Log:
Method modifiers and javadocs note.

Modified: trunk/system/src/main/org/jboss/system/server/profileservice/repository/MutableDeploymentRepository.java
===================================================================
--- trunk/system/src/main/org/jboss/system/server/profileservice/repository/MutableDeploymentRepository.java	2009-02-05 09:02:30 UTC (rev 83886)
+++ trunk/system/src/main/org/jboss/system/server/profileservice/repository/MutableDeploymentRepository.java	2009-02-05 09:06:46 UTC (rev 83887)
@@ -266,7 +266,7 @@
 
    /**
     * Check if the deployment has been modified.
-    * Update last modifed cache if modifed.
+    * Invalidate last modifed cache if modifed.
     *
     * @param root the virtual file root
     * @return true if modifed
@@ -284,12 +284,13 @@
 
    /**
     * Check if the deployment has been modified.
+    * Note: it doesn't invalidate the last modified cache.
     *
     * @param root the virtual file root
     * @return true if modifed
     * @throws Exception for any error
     */
-   protected boolean isModified(VirtualFile root) throws Exception
+   private boolean isModified(VirtualFile root) throws Exception
    {
       // skip vfs deployment context lookup if archive or file
       if (root.isArchive() || root.isLeaf())




More information about the jboss-cvs-commits mailing list