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:
parent
cd78c96d22
commit
f27cca133f
|
@ -48,11 +48,11 @@ public interface SortedBidiMap<K, V> extends OrderedBidiMap<K, V>, SortedMap<K,
|
|||
*
|
||||
* @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.
|
||||
* @return Comparator<? super V>
|
||||
*/
|
||||
public Comparator<? super V> valueComparator();
|
||||
Comparator<? super V> valueComparator();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue