aboutsummaryrefslogtreecommitdiffstats
path: root/guava-tests/test/com/google/common/cache/TestingRemovalListeners.java
diff options
context:
space:
mode:
Diffstat (limited to 'guava-tests/test/com/google/common/cache/TestingRemovalListeners.java')
-rw-r--r--guava-tests/test/com/google/common/cache/TestingRemovalListeners.java6
1 files changed, 0 insertions, 6 deletions
diff --git a/guava-tests/test/com/google/common/cache/TestingRemovalListeners.java b/guava-tests/test/com/google/common/cache/TestingRemovalListeners.java
index 5c7912a..67c71da 100644
--- a/guava-tests/test/com/google/common/cache/TestingRemovalListeners.java
+++ b/guava-tests/test/com/google/common/cache/TestingRemovalListeners.java
@@ -14,9 +14,6 @@
package com.google.common.cache;
-import com.google.common.annotations.GwtCompatible;
-import com.google.common.annotations.GwtIncompatible;
-
import java.util.concurrent.ConcurrentLinkedQueue;
import java.util.concurrent.atomic.AtomicInteger;
@@ -25,7 +22,6 @@ import java.util.concurrent.atomic.AtomicInteger;
*
* @author mike nonemacher
*/
-@GwtCompatible(emulated = true)
class TestingRemovalListeners {
/**
@@ -38,7 +34,6 @@ class TestingRemovalListeners {
/**
* Type-inferring factory method for creating a {@link QueuingRemovalListener}.
*/
- @GwtIncompatible("ConcurrentLinkedQueue")
static <K, V> QueuingRemovalListener<K, V> queuingRemovalListener() {
return new QueuingRemovalListener<K,V>();
}
@@ -53,7 +48,6 @@ class TestingRemovalListeners {
/**
* {@link RemovalListener} that adds all {@link RemovalNotification} objects to a queue.
*/
- @GwtIncompatible("ConcurrentLinkedQueue")
static class QueuingRemovalListener<K, V>
extends ConcurrentLinkedQueue<RemovalNotification<K, V>> implements RemovalListener<K, V> {