Redundant use of public modifier.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1543260 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2013-11-19 00:47:22 +00:00
parent 7419cdb1fb
commit ce1f9e2928
1 changed files with 1 additions and 1 deletions

View File

@ -46,6 +46,6 @@ public interface OrderedBidiMap<K, V> extends BidiMap<K, V>, OrderedMap<K, V> {
*
* @return an inverted bidirectional map
*/
public OrderedBidiMap<V, K> inverseBidiMap();
OrderedBidiMap<V, K> inverseBidiMap();
}