Redundant use of public modifier.

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

View File

@ -48,11 +48,11 @@ public interface SortedBidiMap<K, V> extends OrderedBidiMap<K, V>, SortedMap<K,
* *
* @return an inverted bidirectional map * @return an inverted bidirectional map
*/ */
public SortedBidiMap<V, K> inverseBidiMap(); SortedBidiMap<V, K> inverseBidiMap();
/** /**
* Get the comparator used for the values in the value-to-key map aspect. * Get the comparator used for the values in the value-to-key map aspect.
* @return Comparator<? super V> * @return Comparator<? super V>
*/ */
public Comparator<? super V> valueComparator(); Comparator<? super V> valueComparator();
} }