summaryrefslogtreecommitdiff
path: root/jsr166-tests/src/test/java/jsr166/CollectionImplementation.java
diff options
context:
space:
mode:
authorPrzemyslaw Szczepaniak <pszczepaniak@google.com>2016-03-15 09:42:33 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2016-03-15 09:42:33 +0000
commita8a9d448e97004dcd25c9ccb128e09bcb7690f6a (patch)
tree214d4e0cdccf19471194d03dd3172933336910f1 /jsr166-tests/src/test/java/jsr166/CollectionImplementation.java
parent37f9fec54f50b2e0898ee2b61d058c4de879e38b (diff)
parented4f365789d43b1961657195df223a19bf4ef20f (diff)
Merge "Revert "JSR-166 update""
Diffstat (limited to 'jsr166-tests/src/test/java/jsr166/CollectionImplementation.java')
-rw-r--r--jsr166-tests/src/test/java/jsr166/CollectionImplementation.java21
1 files changed, 0 insertions, 21 deletions
diff --git a/jsr166-tests/src/test/java/jsr166/CollectionImplementation.java b/jsr166-tests/src/test/java/jsr166/CollectionImplementation.java
deleted file mode 100644
index 4ba5bda7c9..0000000000
--- a/jsr166-tests/src/test/java/jsr166/CollectionImplementation.java
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * Written by Doug Lea and Martin Buchholz with assistance from
- * members of JCP JSR-166 Expert Group and released to the public
- * domain, as explained at
- * http://creativecommons.org/publicdomain/zero/1.0/
- */
-
-package jsr166;
-
-import java.util.Collection;
-
-/** Allows tests to work with different Collection implementations. */
-public interface CollectionImplementation {
- /** Returns the Collection class. */
- public Class<?> klazz();
- /** Returns an empty collection. */
- public Collection emptyCollection();
- public Object makeElement(int i);
- public boolean isConcurrent();
- public boolean permitsNulls();
-}