(no commit message)
[utils] / support / general / src / test / java / org / wamblee / io / DirectoryMonitorTestProgram.java
index 890289c4f44f81c162fc3358e01bedaebed4a290..eb865f2aa7dc0c09eb5c7634d18561c0116e1f0a 100644 (file)
@@ -12,7 +12,7 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */ 
+ */
 package org.wamblee.io;
 
 import java.io.File;
@@ -25,7 +25,8 @@ import java.io.File;
 public class DirectoryMonitorTestProgram {
     public static void main(String[] aArgs) throws Exception {
         DirectoryMonitor monitor = new DirectoryMonitor(new File("."),
-            new RegexFilenameFilter(".*\\.txt"), new DirectoryMonitor.Listener() {
+            new RegexFilenameFilter(".*\\.txt"),
+            new DirectoryMonitor.Listener() {
                 public void fileChanged(File aFile) {
                     System.out.println("changed " + aFile);
                 }