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/05/05 16:07:41 UTC

incubator-ignite git commit: ignite-471: fixed MarshallerContextTestImpl

Repository: incubator-ignite
Updated Branches:
  refs/heads/ignite-471 392285406 -> 9678493bf


ignite-471: fixed MarshallerContextTestImpl


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

Branch: refs/heads/ignite-471
Commit: 9678493bf92b721c7dae6455e4b4bc6e9e68d0ea
Parents: 3922854
Author: Denis Magda <dm...@gridgain.com>
Authored: Tue May 5 17:07:39 2015 +0300
Committer: Denis Magda <dm...@gridgain.com>
Committed: Tue May 5 17:07:39 2015 +0300

----------------------------------------------------------------------
 .../org/apache/ignite/marshaller/MarshallerContextTestImpl.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/9678493b/modules/core/src/test/java/org/apache/ignite/marshaller/MarshallerContextTestImpl.java
----------------------------------------------------------------------
diff --git a/modules/core/src/test/java/org/apache/ignite/marshaller/MarshallerContextTestImpl.java b/modules/core/src/test/java/org/apache/ignite/marshaller/MarshallerContextTestImpl.java
index 095a404..dce3829 100644
--- a/modules/core/src/test/java/org/apache/ignite/marshaller/MarshallerContextTestImpl.java
+++ b/modules/core/src/test/java/org/apache/ignite/marshaller/MarshallerContextTestImpl.java
@@ -27,7 +27,7 @@ import java.util.concurrent.*;
  */
 public class MarshallerContextTestImpl extends MarshallerContextAdapter {
     /** */
-    private final ConcurrentMap<Integer, String> map = new ConcurrentHashMap8<>();
+    private final static ConcurrentMap<Integer, String> map = new ConcurrentHashMap8<>();
 
     /** {@inheritDoc} */
     @Override protected boolean registerClassName(int id, String clsName) {