aboutsummaryrefslogtreecommitdiff
path: root/android/guava/src/com/google/common/io/CountingInputStream.java
diff options
context:
space:
mode:
Diffstat (limited to 'android/guava/src/com/google/common/io/CountingInputStream.java')
-rw-r--r--android/guava/src/com/google/common/io/CountingInputStream.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/android/guava/src/com/google/common/io/CountingInputStream.java b/android/guava/src/com/google/common/io/CountingInputStream.java
index a37807ae7..bc481dd74 100644
--- a/android/guava/src/com/google/common/io/CountingInputStream.java
+++ b/android/guava/src/com/google/common/io/CountingInputStream.java
@@ -16,8 +16,8 @@ package com.google.common.io;
import static com.google.common.base.Preconditions.checkNotNull;
-import com.google.common.annotations.Beta;
import com.google.common.annotations.GwtIncompatible;
+import com.google.common.annotations.J2ktIncompatible;
import java.io.FilterInputStream;
import java.io.IOException;
import java.io.InputStream;
@@ -28,7 +28,7 @@ import java.io.InputStream;
* @author Chris Nokleberg
* @since 1.0
*/
-@Beta
+@J2ktIncompatible
@GwtIncompatible
@ElementTypesAreNonnullByDefault
public final class CountingInputStream extends FilterInputStream {