Removed DOCUMENT ME comments that were generated and applied source code
[utils] / support / general / src / test / java / org / wamblee / io / DirectoryMonitorTestProgram.java
index 278b18d45da2b08c659d06761b474238a562cd72..bcd2f7a4077d442c219cff78f49e169b70316a20 100644 (file)
@@ -19,29 +19,27 @@ import org.apache.oro.io.AwkFilenameFilter;
 
 import java.io.File;
 
-
 /**
- *
- *
+ * 
+ * 
  * @author Erik Brakkee
  */
 public class DirectoryMonitorTestProgram {
     public static void main(String[] aArgs) throws Exception {
         DirectoryMonitor monitor = new DirectoryMonitor(new File("."),
-                new AwkFilenameFilter(".*\\.txt"),
-                new DirectoryMonitor.Listener() {
-                    public void fileChanged(File aFile) {
-                        System.out.println("changed " + aFile);
-                    }
+            new AwkFilenameFilter(".*\\.txt"), new DirectoryMonitor.Listener() {
+                public void fileChanged(File aFile) {
+                    System.out.println("changed " + aFile);
+                }
 
-                    public void fileCreated(File aFile) {
-                        System.out.println("created " + aFile);
-                    }
+                public void fileCreated(File aFile) {
+                    System.out.println("created " + aFile);
+                }
 
-                    public void fileDeleted(File aFile) {
-                        System.out.println("deleted " + aFile);
-                    }
-                });
+                public void fileDeleted(File aFile) {
+                    System.out.println("deleted " + aFile);
+                }
+            });
 
         for (;;) {
             monitor.poll();