Author: ebourg Date: Tue Oct 8 16:02:16 2013 New Revision: 1530326 URL: http://svn.apache.org/r1530326 Log: Removed the commented main method in FilesystemAlterationObserverImpl
Modified: commons/proper/jci/trunk/fam/src/main/java/org/apache/commons/jci/monitor/FilesystemAlterationObserverImpl.java Modified: commons/proper/jci/trunk/fam/src/main/java/org/apache/commons/jci/monitor/FilesystemAlterationObserverImpl.java URL: http://svn.apache.org/viewvc/commons/proper/jci/trunk/fam/src/main/java/org/apache/commons/jci/monitor/FilesystemAlterationObserverImpl.java?rev=1530326&r1=1530325&r2=1530326&view=diff ============================================================================== --- commons/proper/jci/trunk/fam/src/main/java/org/apache/commons/jci/monitor/FilesystemAlterationObserverImpl.java (original) +++ commons/proper/jci/trunk/fam/src/main/java/org/apache/commons/jci/monitor/FilesystemAlterationObserverImpl.java Tue Oct 8 16:02:16 2013 @@ -361,19 +361,4 @@ public class FilesystemAlterationObserve return res; } } - - /* - - public static void main( String[] args ) { - final FilesystemAlterationObserverImpl observer = new FilesystemAlterationObserverImpl(new File(args[0])); - while(true) { - observer.checkEntries(); - try { - Thread.sleep(1000); - } catch (InterruptedException e) { - } - } - } - - */ }