From 262ba9d5e3d42211fe63482c07fc31d0a617eb30 Mon Sep 17 00:00:00 2001 From: hns Date: Fri, 29 Aug 2003 15:49:58 +0000 Subject: [PATCH] Remove debug message when removing function --- src/helma/scripting/rhino/RhinoCore.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helma/scripting/rhino/RhinoCore.java b/src/helma/scripting/rhino/RhinoCore.java index f4fda31d..a23cd031 100644 --- a/src/helma/scripting/rhino/RhinoCore.java +++ b/src/helma/scripting/rhino/RhinoCore.java @@ -232,7 +232,7 @@ public final class RhinoCore { if (oldFunctions.contains(prop) && prop instanceof NativeFunction) { // if this is a function compiled from script, it's from the // old generation and wasn't renewed -- delete it. - System.err.println("DELETING OLD FUNC: "+key); + // System.err.println("DELETING OLD FUNC: "+key); try { ((ScriptableObject) op).setAttributes(key, op, 0); op.delete(key);