You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@reef.apache.org by do...@apache.org on 2015/11/15 07:08:33 UTC

incubator-reef git commit: [REEF-948] Remove testing message in PackageNodeImpl

Repository: incubator-reef
Updated Branches:
  refs/heads/master 355742c3a -> 0d5a006ad


[REEF-948] Remove testing message in PackageNodeImpl

JIRA:
  [REEF-948](https://issues.apache.org/jira/browse/REEF-948)

Pull request:
  This closes #642


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

Branch: refs/heads/master
Commit: 0d5a006adadcba216c42d969fe6972cd31a283dc
Parents: 355742c
Author: Andrew Chung <af...@gmail.com>
Authored: Sat Nov 14 09:23:17 2015 -0800
Committer: Dongjoon Hyun <do...@apache.org>
Committed: Sun Nov 15 14:43:41 2015 +0900

----------------------------------------------------------------------
 .../Implementations/ClassHierarchy/PackageNodeImpl.cs            | 4 ----
 1 file changed, 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/0d5a006a/lang/cs/Org.Apache.REEF.Tang/Implementations/ClassHierarchy/PackageNodeImpl.cs
----------------------------------------------------------------------
diff --git a/lang/cs/Org.Apache.REEF.Tang/Implementations/ClassHierarchy/PackageNodeImpl.cs b/lang/cs/Org.Apache.REEF.Tang/Implementations/ClassHierarchy/PackageNodeImpl.cs
index a5e68d4..3721438 100644
--- a/lang/cs/Org.Apache.REEF.Tang/Implementations/ClassHierarchy/PackageNodeImpl.cs
+++ b/lang/cs/Org.Apache.REEF.Tang/Implementations/ClassHierarchy/PackageNodeImpl.cs
@@ -40,10 +40,6 @@ namespace Org.Apache.REEF.Tang.Implementations.ClassHierarchy
         * we insert nodes into the root.
         */
         public override void Add(INode n) {
-            if (children.Count == 289)
-            {
-                Console.WriteLine("Test");
-            }
             children.Add(n.GetFullName(), n);
         }
     }