Redundant use of public modifier.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1543265 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2013-11-19 00:48:44 +00:00
parent e48157a0de
commit 6d908d014c
1 changed files with 9 additions and 9 deletions

View File

@ -32,46 +32,46 @@ public interface Get<K, V> {
/**
* @see java.util.Map#containsKey(Object)
*/
public boolean containsKey(Object key);
boolean containsKey(Object key);
/**
* @see java.util.Map#containsValue(Object)
*/
public boolean containsValue(Object value);
boolean containsValue(Object value);
/**
* @see java.util.Map#entrySet()
*/
public Set<java.util.Map.Entry<K, V>> entrySet();
Set<java.util.Map.Entry<K, V>> entrySet();
/**
* @see java.util.Map#get(Object)
*/
public V get(Object key);
V get(Object key);
/**
* @see java.util.Map#remove(Object)
*/
public V remove(Object key);
V remove(Object key);
/**
* @see java.util.Map#isEmpty()
*/
public boolean isEmpty();
boolean isEmpty();
/**
* @see java.util.Map#keySet()
*/
public Set<K> keySet();
Set<K> keySet();
/**
* @see java.util.Map#size()
*/
public int size();
int size();
/**
* @see java.util.Map#values()
*/
public Collection<V> values();
Collection<V> values();
}