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/05/02 06:59:15 UTC

commons-compress git commit: Add missing default serialVersionUID.

Repository: commons-compress
Updated Branches:
  refs/heads/master 1014dffca -> 76390c0b5


Add missing default serialVersionUID.

Project: http://git-wip-us.apache.org/repos/asf/commons-compress/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-compress/commit/76390c0b
Tree: http://git-wip-us.apache.org/repos/asf/commons-compress/tree/76390c0b
Diff: http://git-wip-us.apache.org/repos/asf/commons-compress/diff/76390c0b

Branch: refs/heads/master
Commit: 76390c0b54bf145f65532ffe1e7b24639f108247
Parents: 1014dff
Author: Gary Gregory <ga...@gmail.com>
Authored: Mon May 1 23:59:13 2017 -0700
Committer: Gary Gregory <ga...@gmail.com>
Committed: Mon May 1 23:59:13 2017 -0700

----------------------------------------------------------------------
 .../java/org/apache/commons/compress/MemoryLimitException.java     | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-compress/blob/76390c0b/src/main/java/org/apache/commons/compress/MemoryLimitException.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/compress/MemoryLimitException.java b/src/main/java/org/apache/commons/compress/MemoryLimitException.java
index 122edb1..1c5ec07 100644
--- a/src/main/java/org/apache/commons/compress/MemoryLimitException.java
+++ b/src/main/java/org/apache/commons/compress/MemoryLimitException.java
@@ -30,6 +30,8 @@ import java.io.IOException;
  */
 public class MemoryLimitException extends IOException {
 
+    private static final long serialVersionUID = 1L;
+    
     //long instead of int to account for overflow for corrupt files
     private final long memoryNeededInKb;
     private final int memoryLimitInKb;