From 379ed8a0e133bee650e0acb24f6b743f657a50d0 Mon Sep 17 00:00:00 2001 From: abranson Date: Thu, 4 Aug 2011 16:08:49 +0200 Subject: Last bit of cleanup honest New castor and dependent commons libs --- source/com/c2kernel/gui/data/NodeContext.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/com/c2kernel/gui/data/NodeContext.java') diff --git a/source/com/c2kernel/gui/data/NodeContext.java b/source/com/c2kernel/gui/data/NodeContext.java index 9240af4..ded3dd4 100644 --- a/source/com/c2kernel/gui/data/NodeContext.java +++ b/source/com/c2kernel/gui/data/NodeContext.java @@ -11,7 +11,7 @@ import com.c2kernel.utils.Logger; public class NodeContext extends Node implements DomainPathSubscriber { - Enumeration children; + Enumeration children; public NodeContext(Path path, EntityTabManager desktop) { super(path, desktop); @@ -31,7 +31,7 @@ public class NodeContext extends Node implements DomainPathSubscriber { int batch = 75; while (children.hasMoreElements() && batch > 0) { - Path newPath = (Path)children.nextElement(); + Path newPath = children.nextElement(); if (newPath == null) break; Logger.msg(2, "Subscription.run() - new node: " + newPath ); add( newNode(newPath)); -- cgit v1.2.3