You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ab...@apache.org on 2016/12/02 01:43:48 UTC

[05/31] incubator-geode git commit: GEODE-2157: Adding a serialVersionUID to PutAllPartialResultException

GEODE-2157: Adding a serialVersionUID to PutAllPartialResultException

Adding the serialVersionUID from the old version of this class to
PutAllPartialResultException.


Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/be1d5e31
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/be1d5e31
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/be1d5e31

Branch: refs/heads/feature/GEODE-2156
Commit: be1d5e31aa0aa41212e269a739cdbeada9e87310
Parents: 918e6cf
Author: Dan Smith <up...@apache.org>
Authored: Wed Nov 30 11:13:23 2016 -0800
Committer: Dan Smith <up...@apache.org>
Committed: Wed Nov 30 11:52:29 2016 -0800

----------------------------------------------------------------------
 .../apache/geode/internal/cache/PutAllPartialResultException.java   | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/be1d5e31/geode-core/src/main/java/org/apache/geode/internal/cache/PutAllPartialResultException.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/org/apache/geode/internal/cache/PutAllPartialResultException.java b/geode-core/src/main/java/org/apache/geode/internal/cache/PutAllPartialResultException.java
index fa906cd..883b34b 100755
--- a/geode-core/src/main/java/org/apache/geode/internal/cache/PutAllPartialResultException.java
+++ b/geode-core/src/main/java/org/apache/geode/internal/cache/PutAllPartialResultException.java
@@ -31,6 +31,7 @@ import java.util.*;
  */
 public class PutAllPartialResultException extends GemFireException {
 
+  private static final long serialVersionUID = 2411654400733621071L;
   private PutAllPartialResult result;
 
   //////////////////// Constructors ////////////////////