This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-pool.git
The following commit(s) were added to refs/heads/master by this push: new b0a335db Javadoc and don't use FQCN in throws clause. b0a335db is described below commit b0a335db1ee01344ed60d564056fe7a2512bef4d Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat May 21 14:50:49 2022 -0400 Javadoc and don't use FQCN in throws clause. --- src/main/java/org/apache/commons/pool2/impl/LinkedBlockingDeque.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 ad487820..6500357b 100644 --- a/src/main/java/org/apache/commons/pool2/impl/LinkedBlockingDeque.java +++ b/src/main/java/org/apache/commons/pool2/impl/LinkedBlockingDeque.java @@ -1500,8 +1500,9 @@ class LinkedBlockingDeque<E> extends AbstractQueue<E> * @serialData The capacity (int), followed by elements (each an * {@code Object}) in the proper order, followed by a null * @param s the stream + * @throws IOException if I/O errors occur while writing to the underlying {@code OutputStream} */ - private void writeObject(final java.io.ObjectOutputStream s) throws java.io.IOException { + private void writeObject(final java.io.ObjectOutputStream s) throws IOException { lock.lock(); try { // Write out capacity and any hidden stuff