From b6efb029509980fd08ca4ebe28c89cf8d79fa46c Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Tue, 03 Sep 2019 21:25:24 -0400 Subject: [PATCH] deepCopyNode --- Sphere.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Sphere.java b/Sphere.java index baf117f..4a0b298 100644 --- a/Sphere.java +++ b/Sphere.java @@ -95,9 +95,9 @@ return e; } - protected void deepCopySelf(Object3D other) + protected void deepCopyNode(Object3D other) { - super.deepCopySelf(other); + super.deepCopyNode(other); Sphere e = (Sphere) other; if (center != null) { -- Gitblit v1.6.2