Reverted HDFS-2474

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1186501 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Alejandro Abdelnur 2011-10-19 21:29:01 +00:00
parent 2edd042f8a
commit 01d408d5b0
2 changed files with 1 additions and 8 deletions

View File

@ -21,13 +21,8 @@ package org.apache.hadoop.fs;
import java.util.regex.PatternSyntaxException;
import java.io.IOException;
import org.apache.hadoop.classification.InterfaceAudience;
import org.apache.hadoop.classification.InterfaceStability;
// A class that could decide if a string matches the glob or not
@InterfaceAudience.Public
@InterfaceStability.Evolving
public class GlobFilter implements PathFilter {
class GlobFilter implements PathFilter {
private final static PathFilter DEFAULT_FILTER = new PathFilter() {
public boolean accept(Path file) {
return true;

View File

@ -67,8 +67,6 @@ Trunk (unreleased changes)
HDFS-2322. the build fails in Windows because commons-daemon TAR cannot be fetched. (tucu)
HDFS-2474. Make GlobFilter class public. (tucu)
BUG FIXES
HDFS-2287. TestParallelRead has a small off-by-one bug. (todd)