Javadoc nits.

This commit is contained in:
Gary Gregory 2018-11-01 14:10:30 -06:00
parent b5585aaa60
commit d8fd531766
1 changed files with 2 additions and 2 deletions

View File

@ -36,14 +36,14 @@ public interface BoundedCollection<E> extends Collection<E> {
/**
* Returns true if this collection is full and no new elements can be added.
*
* @return <code>true</code> if the collection is full
* @return <code>true</code> if the collection is full.
*/
boolean isFull();
/**
* Gets the maximum size of the collection (the bound).
*
* @return the maximum number of elements the collection can hold
* @return the maximum number of elements the collection can hold.
*/
int maxSize();