summaryrefslogtreecommitdiff
path: root/java/src/IceGrid/TreeNode/Parent.java
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2005-10-11 22:07:52 +0000
committerBernard Normier <bernard@zeroc.com>2005-10-11 22:07:52 +0000
commit3498de4cc662bf616f1e9c55fc93a66820555f0f (patch)
treef10979e753877b27e4e8b1fc20ab459e92cf020f /java/src/IceGrid/TreeNode/Parent.java
parentAbility to edit/copy applications (diff)
downloadice-3498de4cc662bf616f1e9c55fc93a66820555f0f.tar.bz2
ice-3498de4cc662bf616f1e9c55fc93a66820555f0f.tar.xz
ice-3498de4cc662bf616f1e9c55fc93a66820555f0f.zip
Cleanup + application destruction
Diffstat (limited to 'java/src/IceGrid/TreeNode/Parent.java')
-rwxr-xr-xjava/src/IceGrid/TreeNode/Parent.java15
1 files changed, 0 insertions, 15 deletions
diff --git a/java/src/IceGrid/TreeNode/Parent.java b/java/src/IceGrid/TreeNode/Parent.java
index 34d7e901a89..7d411b8e9b4 100755
--- a/java/src/IceGrid/TreeNode/Parent.java
+++ b/java/src/IceGrid/TreeNode/Parent.java
@@ -576,21 +576,6 @@ class Parent extends CommonBaseI
this(id, model, false);
}
- protected Parent(Parent o)
- {
- this(o, false);
- // Derived class is responsible to populate the children
- }
-
- protected Parent(Parent o, boolean copyChildren)
- {
- super(o);
- if(copyChildren)
- {
- _children = (java.util.LinkedList)o._children.clone();
- }
- }
-
protected void sortChildren(boolean val)
{
_sortChildren = val;