aboutsummaryrefslogtreecommitdiff
path: root/android/guava/src/com/google/common/io/PatternFilenameFilter.java
diff options
context:
space:
mode:
Diffstat (limited to 'android/guava/src/com/google/common/io/PatternFilenameFilter.java')
-rw-r--r--android/guava/src/com/google/common/io/PatternFilenameFilter.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/android/guava/src/com/google/common/io/PatternFilenameFilter.java b/android/guava/src/com/google/common/io/PatternFilenameFilter.java
index 3cb2371e2..ee0a0bda2 100644
--- a/android/guava/src/com/google/common/io/PatternFilenameFilter.java
+++ b/android/guava/src/com/google/common/io/PatternFilenameFilter.java
@@ -14,8 +14,8 @@
package com.google.common.io;
-import com.google.common.annotations.Beta;
import com.google.common.annotations.GwtIncompatible;
+import com.google.common.annotations.J2ktIncompatible;
import com.google.common.base.Preconditions;
import java.io.File;
import java.io.FilenameFilter;
@@ -29,7 +29,7 @@ import java.util.regex.PatternSyntaxException;
* @author Apple Chow
* @since 1.0
*/
-@Beta
+@J2ktIncompatible
@GwtIncompatible
@ElementTypesAreNonnullByDefault
public final class PatternFilenameFilter implements FilenameFilter {