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 2017/11/01 15:19:20 UTC

commons-pool git commit: [POOL-334] org.apache.commons.pool2.impl.ThrowableCallStack.Snapshot is missing serialVersionUID.

Repository: commons-pool
Updated Branches:
  refs/heads/master 98473b8fb -> 305c48ab5


[POOL-334] org.apache.commons.pool2.impl.ThrowableCallStack.Snapshot is
missing serialVersionUID.

Project: http://git-wip-us.apache.org/repos/asf/commons-pool/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-pool/commit/305c48ab
Tree: http://git-wip-us.apache.org/repos/asf/commons-pool/tree/305c48ab
Diff: http://git-wip-us.apache.org/repos/asf/commons-pool/diff/305c48ab

Branch: refs/heads/master
Commit: 305c48ab5981e67fd5c19e37f89c496ede33bde2
Parents: 98473b8
Author: Gary Gregory <gg...@apache.org>
Authored: Wed Nov 1 09:19:18 2017 -0600
Committer: Gary Gregory <gg...@apache.org>
Committed: Wed Nov 1 09:19:18 2017 -0600

----------------------------------------------------------------------
 src/changes/changes.xml                                           | 3 +++
 .../java/org/apache/commons/pool2/impl/ThrowableCallStack.java    | 1 +
 2 files changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-pool/blob/305c48ab/src/changes/changes.xml
----------------------------------------------------------------------
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 846d808..8df6291 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -56,6 +56,9 @@ The <action> type attribute can be add,update,fix,remove.
     <action dev="ggregory" issue="POOL-333" type="update">
       Update optional dependency asm-util from 5.2 to 6.0.
     </action>
+    <action dev="ggregory" issue="POOL-334" type="update">
+      org.apache.commons.pool2.impl.ThrowableCallStack.Snapshot is missing serialVersionUID.
+    </action>
   </release>
   <release version="2.4.3" date="2017-10-24" description="This is a patch release, including bug fixes only.">
     <action dev="ggregory" issue="POOL-328" type="fix" due-to="Lorenzo Solano Martinez">

http://git-wip-us.apache.org/repos/asf/commons-pool/blob/305c48ab/src/main/java/org/apache/commons/pool2/impl/ThrowableCallStack.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/pool2/impl/ThrowableCallStack.java b/src/main/java/org/apache/commons/pool2/impl/ThrowableCallStack.java
index 3b26d67..f6997a1 100644
--- a/src/main/java/org/apache/commons/pool2/impl/ThrowableCallStack.java
+++ b/src/main/java/org/apache/commons/pool2/impl/ThrowableCallStack.java
@@ -80,6 +80,7 @@ public class ThrowableCallStack implements CallStack {
      * A snapshot of a throwable.
      */
     private static class Snapshot extends Throwable {
+        private static final long serialVersionUID = 1L;
         private final long timestamp = System.currentTimeMillis();
     }
 }