Repository: commons-pool Updated Branches: refs/heads/master 3871a9cbc -> 9c2b74bb7
Javadoc: Use the active voice. Project: http://git-wip-us.apache.org/repos/asf/commons-pool/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-pool/commit/9c2b74bb Tree: http://git-wip-us.apache.org/repos/asf/commons-pool/tree/9c2b74bb Diff: http://git-wip-us.apache.org/repos/asf/commons-pool/diff/9c2b74bb Branch: refs/heads/master Commit: 9c2b74bb719dd36350b64e1e183300b5c356ca51 Parents: 3871a9c Author: Gary Gregory <garydgreg...@gmail.com> Authored: Wed Apr 11 10:48:48 2018 -0600 Committer: Gary Gregory <garydgreg...@gmail.com> Committed: Wed Apr 11 10:48:48 2018 -0600 ---------------------------------------------------------------------- .../org/apache/commons/pool2/impl/LinkedBlockingDeque.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-pool/blob/9c2b74bb/src/main/java/org/apache/commons/pool2/impl/LinkedBlockingDeque.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/pool2/impl/LinkedBlockingDeque.java b/src/main/java/org/apache/commons/pool2/impl/LinkedBlockingDeque.java index 68f4285..a7dabc9 100644 --- a/src/main/java/org/apache/commons/pool2/impl/LinkedBlockingDeque.java +++ b/src/main/java/org/apache/commons/pool2/impl/LinkedBlockingDeque.java @@ -901,7 +901,7 @@ class LinkedBlockingDeque<E> extends AbstractQueue<E> } /** - * Empty the queue to the specified collection. + * Drains the queue to the specified collection. * * @param c The collection to add the elements to * @@ -920,7 +920,7 @@ class LinkedBlockingDeque<E> extends AbstractQueue<E> } /** - * Empty no more than the specified number of elements from the queue to the + * Drains no more than the specified number of elements from the queue to the * specified collection. * * @param c collection to add the elements to @@ -1330,7 +1330,7 @@ class LinkedBlockingDeque<E> extends AbstractQueue<E> } /** - * Save the state of this deque to a stream (that is, serialize it). + * Saves the state of this deque to a stream (that is, serialize it). * * @serialData The capacity (int), followed by elements (each an * {@code Object}) in the proper order, followed by a null @@ -1354,7 +1354,7 @@ class LinkedBlockingDeque<E> extends AbstractQueue<E> } /** - * Reconstitute this deque from a stream (that is, + * Reconstitutes this deque from a stream (that is, * deserialize it). * @param s the stream */