(no commit message)
[utils] / support / general / src / test / java / org / wamblee / io / DirectoryMonitorTestProgram.java
index a28b59683cc91ea440945cb034dbd58c77fc64a6..eb865f2aa7dc0c09eb5c7634d18561c0116e1f0a 100644 (file)
  * 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 org.apache.oro.io.AwkFilenameFilter;
-
 import java.io.File;
 
 /**
@@ -27,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 AwkFilenameFilter(".*\\.txt"), new DirectoryMonitor.Listener() {
+            new RegexFilenameFilter(".*\\.txt"),
+            new DirectoryMonitor.Listener() {
                 public void fileChanged(File aFile) {
                     System.out.println("changed " + aFile);
                 }