mirror of
https://github.com/apache/commons-collections.git
synced 2025-02-10 12:05:55 +00:00
Javadoc
Normalize spelling
This commit is contained in:
parent
d0137526d1
commit
ced89f524f
@ -30,7 +30,7 @@ import org.apache.commons.collections4.CollectionUtils;
|
|||||||
import org.apache.commons.collections4.OrderedIterator;
|
import org.apache.commons.collections4.OrderedIterator;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A {@code List} implementation that is optimised for fast insertions and
|
* A {@code List} implementation that is optimized for fast insertions and
|
||||||
* removals at any index in the list.
|
* removals at any index in the list.
|
||||||
* <p>
|
* <p>
|
||||||
* This list implementation utilises a tree structure internally to ensure that
|
* This list implementation utilises a tree structure internally to ensure that
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
* <p>
|
* <p>
|
||||||
* The following implementations are provided in the package:
|
* The following implementations are provided in the package:
|
||||||
* <ul>
|
* <ul>
|
||||||
* <li>TreeList - a list that is optimised for insertions and removals at any index in the list</li>
|
* <li>TreeList - a list that is optimized for insertions and removals at any index in the list</li>
|
||||||
* <li>CursorableLinkedList - a list that can be modified while the listIterator (cursor) is being used</li>
|
* <li>CursorableLinkedList - a list that can be modified while the listIterator (cursor) is being used</li>
|
||||||
* <li>NodeCachingLinkedList - a linked list that caches the storage nodes for a performance gain</li>
|
* <li>NodeCachingLinkedList - a linked list that caches the storage nodes for a performance gain</li>
|
||||||
* </ul>
|
* </ul>
|
||||||
|
@ -86,7 +86,7 @@ abstract class AbstractInputCheckedMapDecorator<K, V>
|
|||||||
* Hook method called to determine if {@code checkSetValue} has any effect.
|
* Hook method called to determine if {@code checkSetValue} has any effect.
|
||||||
* <p>
|
* <p>
|
||||||
* An implementation should return false if the {@code checkSetValue} method
|
* An implementation should return false if the {@code checkSetValue} method
|
||||||
* has no effect as this optimises the implementation.
|
* has no effect as this optimizes the implementation.
|
||||||
* <p>
|
* <p>
|
||||||
* This implementation returns {@code true}.
|
* This implementation returns {@code true}.
|
||||||
*
|
*
|
||||||
|
@ -22,7 +22,7 @@ import java.util.LinkedList;
|
|||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test class for NodeCachingLinkedList, a performance optimised LinkedList.
|
* Test class for NodeCachingLinkedList, a performance optimized LinkedList.
|
||||||
*/
|
*/
|
||||||
public class NodeCachingLinkedListTest<E> extends AbstractLinkedListTest<E> {
|
public class NodeCachingLinkedListTest<E> extends AbstractLinkedListTest<E> {
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user