aboutsummaryrefslogtreecommitdiffstats
path: root/guava-testlib/src/com/google/common/collect/testing/google/TestBiMapGenerator.java
diff options
context:
space:
mode:
authorPaul Duffin <paulduffin@google.com>2015-01-15 16:22:36 +0000
committerPaul Duffin <paulduffin@google.com>2015-01-19 12:15:57 +0000
commitdbd967a6e5c96cc1a97c5521f88dc1564ba2f81b (patch)
tree7365392c3ea77742021cf187acfd465f9bb774ab /guava-testlib/src/com/google/common/collect/testing/google/TestBiMapGenerator.java
parent2d0fc0880966a0cd782d1c09f3b883f209bb3111 (diff)
downloadandroid_external_guava-dbd967a6e5c96cc1a97c5521f88dc1564ba2f81b.tar.gz
android_external_guava-dbd967a6e5c96cc1a97c5521f88dc1564ba2f81b.tar.bz2
android_external_guava-dbd967a6e5c96cc1a97c5521f88dc1564ba2f81b.zip
Revert "Upgraded Guava to unmodified v14.0.1"
This reverts commit 3c77433663281544363151bf284b0240dfd22a42. Change-Id: I25630eb4eef9a993c94f273796d3d9f04811e74d
Diffstat (limited to 'guava-testlib/src/com/google/common/collect/testing/google/TestBiMapGenerator.java')
-rw-r--r--guava-testlib/src/com/google/common/collect/testing/google/TestBiMapGenerator.java36
1 files changed, 0 insertions, 36 deletions
diff --git a/guava-testlib/src/com/google/common/collect/testing/google/TestBiMapGenerator.java b/guava-testlib/src/com/google/common/collect/testing/google/TestBiMapGenerator.java
deleted file mode 100644
index a8999e4..0000000
--- a/guava-testlib/src/com/google/common/collect/testing/google/TestBiMapGenerator.java
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * Copyright (C) 2012 The Guava Authors
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package com.google.common.collect.testing.google;
-
-import com.google.common.annotations.GwtCompatible;
-import com.google.common.collect.BiMap;
-import com.google.common.collect.testing.TestContainerGenerator;
-
-import java.util.Map;
-
-/**
- * Creates bimaps, containing sample entries, to be tested.
- *
- * @author Louis Wasserman
- */
-@GwtCompatible
-public interface TestBiMapGenerator<K, V>
- extends TestContainerGenerator<BiMap<K, V>, Map.Entry<K, V>> {
- K[] createKeyArray(int length);
-
- V[] createValueArray(int length);
-}