You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by vo...@apache.org on 2016/09/08 14:45:51 UTC

[09/50] ignite git commit: Fix binayr mode

Fix binayr mode


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

Branch: refs/heads/ignite-3199-1
Commit: 5a503c7e9c03f192896df6bcb39150d5a190b0fd
Parents: 8a44103
Author: Pavel Tupitsyn <pt...@apache.org>
Authored: Mon Sep 5 17:12:32 2016 +0300
Committer: Pavel Tupitsyn <pt...@apache.org>
Committed: Mon Sep 5 17:12:32 2016 +0300

----------------------------------------------------------------------
 .../processors/platform/PlatformProcessorImpl.java    | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/5a503c7e/modules/core/src/main/java/org/apache/ignite/internal/processors/platform/PlatformProcessorImpl.java
----------------------------------------------------------------------
diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/platform/PlatformProcessorImpl.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/platform/PlatformProcessorImpl.java
index e367768..0fefc33 100644
--- a/modules/core/src/main/java/org/apache/ignite/internal/processors/platform/PlatformProcessorImpl.java
+++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/platform/PlatformProcessorImpl.java
@@ -211,7 +211,7 @@ public class PlatformProcessorImpl extends GridProcessorAdapter implements Platf
         if (cache == null)
             throw new IllegalArgumentException("Cache doesn't exist: " + name);
 
-        return new PlatformCache(platformCtx, cache.keepBinary(), false);
+        return new PlatformCache(platformCtx, cache, false);
     }
 
     /** {@inheritDoc} */
@@ -220,7 +220,7 @@ public class PlatformProcessorImpl extends GridProcessorAdapter implements Platf
 
         assert cache != null;
 
-        return new PlatformCache(platformCtx, cache.keepBinary(), false);
+        return new PlatformCache(platformCtx, cache, false);
     }
 
     /** {@inheritDoc} */
@@ -229,7 +229,7 @@ public class PlatformProcessorImpl extends GridProcessorAdapter implements Platf
 
         assert cache != null;
 
-        return new PlatformCache(platformCtx, cache.keepBinary(), false);
+        return new PlatformCache(platformCtx, cache, false);
     }
 
     /** {@inheritDoc} */
@@ -241,7 +241,7 @@ public class PlatformProcessorImpl extends GridProcessorAdapter implements Platf
             ? (IgniteCacheProxy)ctx.grid().createCache(cfg, PlatformConfigurationUtils.readNearConfiguration(reader))
             : (IgniteCacheProxy)ctx.grid().createCache(cfg);
 
-        return new PlatformCache(platformCtx, cache.keepBinary(), false);
+        return new PlatformCache(platformCtx, cache, false);
     }
 
     /** {@inheritDoc} */
@@ -254,7 +254,7 @@ public class PlatformProcessorImpl extends GridProcessorAdapter implements Platf
                     PlatformConfigurationUtils.readNearConfiguration(reader))
             : (IgniteCacheProxy)ctx.grid().getOrCreateCache(cfg);
 
-        return new PlatformCache(platformCtx, cache.keepBinary(), false);
+        return new PlatformCache(platformCtx, cache, false);
     }
 
     /** {@inheritDoc} */
@@ -408,7 +408,7 @@ public class PlatformProcessorImpl extends GridProcessorAdapter implements Platf
 
         IgniteCacheProxy cache = (IgniteCacheProxy)ctx.grid().createNearCache(cacheName, cfg);
 
-        return new PlatformCache(platformCtx, cache.keepBinary(), false);
+        return new PlatformCache(platformCtx, cache, false);
     }
 
     /** {@inheritDoc} */
@@ -417,7 +417,7 @@ public class PlatformProcessorImpl extends GridProcessorAdapter implements Platf
 
         IgniteCacheProxy cache = (IgniteCacheProxy)ctx.grid().getOrCreateNearCache(cacheName, cfg);
 
-        return new PlatformCache(platformCtx, cache.keepBinary(), false);
+        return new PlatformCache(platformCtx, cache, false);
     }
 
     /** {@inheritDoc} */