Browse Source

Reverted HDFS-2474

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1186501 13f79535-47bb-0310-9956-ffa450edef68
Alejandro Abdelnur 13 years ago
parent
commit
01d408d5b0

+ 1 - 6
hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/GlobFilter.java

@@ -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;

+ 0 - 2
hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt

@@ -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)