Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/java/org/apache/commons/collections4/ArrayStack.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
* An implementation of the {@link Stack} API that is based on an
* {@code ArrayList} instead of a {@code Vector}, so it is not
* synchronized to protect against multithreaded access. The implementation
* is therefore operates faster in environments where you do not need to
* worry about multiple thread contention.
* therefore operates faster in environments where you do not need to worry
* about multiple thread contention.
* <p>
* The removal order of an {@code ArrayStack} is based on insertion
* order: The most recently added element is removed first. The iteration
Expand Down
Loading