You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ag...@apache.org on 2015/11/19 16:13:23 UTC

ignite git commit: IGNITE-1945 - Removed debug.

Repository: ignite
Updated Branches:
  refs/heads/ignite-1945 64ff5c1aa -> e54cac058


IGNITE-1945 - Removed debug.


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

Branch: refs/heads/ignite-1945
Commit: e54cac058937217207dcbde0bcafd8a7dbea0077
Parents: 64ff5c1
Author: Alexey Goncharuk <al...@gmail.com>
Authored: Thu Nov 19 18:13:11 2015 +0300
Committer: Alexey Goncharuk <al...@gmail.com>
Committed: Thu Nov 19 18:13:11 2015 +0300

----------------------------------------------------------------------
 .../org/apache/ignite/internal/MarshallerContextAdapter.java | 8 --------
 1 file changed, 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/e54cac05/modules/core/src/main/java/org/apache/ignite/internal/MarshallerContextAdapter.java
----------------------------------------------------------------------
diff --git a/modules/core/src/main/java/org/apache/ignite/internal/MarshallerContextAdapter.java b/modules/core/src/main/java/org/apache/ignite/internal/MarshallerContextAdapter.java
index a683606..c25da03 100644
--- a/modules/core/src/main/java/org/apache/ignite/internal/MarshallerContextAdapter.java
+++ b/modules/core/src/main/java/org/apache/ignite/internal/MarshallerContextAdapter.java
@@ -142,10 +142,6 @@ public abstract class MarshallerContextAdapter implements MarshallerContext {
                         ", oldClsName=" + oldClsName + ']');
                 }
 
-                if (clsName.contains("PortableMetadataKey")) {
-                    U.debug("Adding type=" + clsName + ", set=" + System.identityHashCode(registeredSystemTypes) + ", url=" + url + ']');
-                }
-
                 registeredSystemTypes.add(clsName);
             }
         }
@@ -191,10 +187,6 @@ public abstract class MarshallerContextAdapter implements MarshallerContext {
 
     /** {@inheritDoc} */
     @Override public boolean isSystemType(String typeName) {
-        if (typeName.contains("PortableMetaDataKey")) {
-            U.debug("Checking type=" + typeName + ", set=" + System.identityHashCode(registeredSystemTypes) + ']');
-        }
-
         return registeredSystemTypes.contains(typeName);
     }