CVS: jcontainer/loom/engine/src/java/org/jcontainer/loom/components/monitor DefaultDeploymentMonitor.java,1.14,1.15

Peter Donald <pdonald-yCVjj/[email protected]> Sat, 29 Nov 2003 07:44:54 -0600
Newsgroups gmane.comp.java.jcontainer.cvs
Message-ID <[email protected]>
Update of /cvsroot/jcontainer/jcontainer/loom/engine/src/java/org/jcontainer/loom/components/monitor
In directory hogshead.codehaus.org:/tmp/cvs-serv31016/loom/engine/src/java/org/jcontainer/loom/components/monitor

Modified Files:
	DefaultDeploymentMonitor.java 
Log Message:
Remove email addie

Index: DefaultDeploymentMonitor.java
===================================================================
RCS file: /cvsroot/jcontainer/jcontainer/loom/engine/src/java/org/jcontainer/loom/components/monitor/DefaultDeploymentMonitor.java,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- DefaultDeploymentMonitor.java	29 Oct 2003 22:46:17 -0000	1.14
+++ DefaultDeploymentMonitor.java	29 Nov 2003 13:44:21 -0000	1.15
@@ -110,11 +110,10 @@
 import org.realityforge.salt.io.FileUtil;
 
 /**
- * This class is responsible for monitoring the deployment
- * directory and deploying, undelploying or redeploying an
- * application as necessary.
+ * This class is responsible for monitoring the deployment directory and
+ * deploying, undelploying or redeploying an application as necessary.
  *
- * @author <a href="mailto:peter at realityforge.org">Peter Donald</a>
+ * @author Peter Donald
  * @version $Revision$ $Date$
  */
 public class DefaultDeploymentMonitor
@@ -132,7 +131,8 @@
     public void configure( Configuration configuration )
         throws ConfigurationException
     {
-        m_frequency = configuration.getChild( "scanner-frequency" ).getValueAsLong( 1000L );
+        m_frequency =
+        configuration.getChild( "scanner-frequency" ).getValueAsLong( 1000L );
         final String appsDir =
             configuration.getChild( "base-application-directory" ).getValue();
         m_appsDir = new File( appsDir );
@@ -174,8 +174,8 @@
     }
 
     /**
-     * This method is called when the scanner detects that the contents
-     * of deployment directory has changed.
+     * This method is called when the scanner detects that the contents of
+     * deployment directory has changed.
      */
     public void propertyChange( final PropertyChangeEvent event )
     {
@@ -316,7 +316,6 @@
      * Return true if file represents a loom deployment.
      *
      * @param file the file
-     * @return
      */
     private boolean isDeployment( final File file )
     {