You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2021/12/29 17:06:47 UTC

[commons-pool] branch master updated (805d066 -> 18d4d4b)

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-pool.git.


    from 805d066  Drop obsolete .travis.yaml.
     new 5ddab26  Use imports instead of FQCNs.
     new 18d4d4b  Use imports instead of FQCNs.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/dependabot.yml                                              | 6 ++++--
 .../java/org/apache/commons/pool2/impl/LinkedBlockingDeque.java     | 6 ++++--
 2 files changed, 8 insertions(+), 4 deletions(-)

[commons-pool] 01/02: Use imports instead of FQCNs.

Posted by gg...@apache.org.
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

commit 5ddab26d2d7434eaa06947199410f3ad765148a6
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Wed Dec 29 12:06:42 2021 -0500

    Use imports instead of FQCNs.
---
 .../java/org/apache/commons/pool2/impl/LinkedBlockingDeque.java     | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

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 142b3e6..ad48782 100644
--- a/src/main/java/org/apache/commons/pool2/impl/LinkedBlockingDeque.java
+++ b/src/main/java/org/apache/commons/pool2/impl/LinkedBlockingDeque.java
@@ -16,6 +16,8 @@
  */
 package org.apache.commons.pool2.impl;
 
+import java.io.IOException;
+import java.io.ObjectInputStream;
 import java.io.Serializable;
 import java.time.Duration;
 import java.util.AbstractQueue;
@@ -1093,8 +1095,8 @@ class LinkedBlockingDeque<E> extends AbstractQueue<E>
      * deserialize it).
      * @param s the stream
      */
-    private void readObject(final java.io.ObjectInputStream s)
-        throws java.io.IOException, ClassNotFoundException {
+    private void readObject(final ObjectInputStream s)
+        throws IOException, ClassNotFoundException {
         s.defaultReadObject();
         count = 0;
         first = null;

[commons-pool] 02/02: Use imports instead of FQCNs.

Posted by gg...@apache.org.
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

commit 18d4d4bbc6bba02773006fa967ad8ed6c2cb4513
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Wed Dec 29 12:06:46 2021 -0500

    Use imports instead of FQCNs.
---
 .github/dependabot.yml | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index 5b47509..9ebcd0e 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -18,8 +18,10 @@ updates:
   - package-ecosystem: "maven"
     directory: "/"
     schedule:
-      interval: "daily"
+      interval: "weekly"
+      day: "friday"
   - package-ecosystem: "github-actions"
     directory: "/"
     schedule:
-      interval: "daily"
+      interval: "weekly"
+      day: "friday"