You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sb...@apache.org on 2015/08/21 13:52:32 UTC

[31/40] incubator-ignite git commit: # ignite-1.3.3-p3 fixed CachePartialUpdateCheckedException

# ignite-1.3.3-p3 fixed CachePartialUpdateCheckedException


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

Branch: refs/heads/ignite-1258
Commit: 9603b251ab22226747a384d0e220580a69c44d31
Parents: d31a8df
Author: sboikov <sb...@gridgain.com>
Authored: Fri Aug 21 09:35:29 2015 +0300
Committer: sboikov <sb...@gridgain.com>
Committed: Fri Aug 21 09:35:29 2015 +0300

----------------------------------------------------------------------
 .../processors/cache/CachePartialUpdateCheckedException.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/9603b251/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/CachePartialUpdateCheckedException.java
----------------------------------------------------------------------
diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/CachePartialUpdateCheckedException.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/CachePartialUpdateCheckedException.java
index fc846f1..ab38e5f 100644
--- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/CachePartialUpdateCheckedException.java
+++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/CachePartialUpdateCheckedException.java
@@ -49,7 +49,7 @@ public class CachePartialUpdateCheckedException extends IgniteCheckedException {
      */
     @SuppressWarnings("unchecked")
     public synchronized <K> Collection<K> failedKeys() {
-        return new HashSet<>((Collection<K>)failedKeys);
+        return new LinkedHashSet<>((Collection<K>)failedKeys);
     }
 
     /**