From 3848562eaf0c258a026ed21cb44343b27cf8de21 Mon Sep 17 00:00:00 2001 From: TudbuT Date: Mon, 2 May 2022 10:24:26 +0200 Subject: [PATCH] remove a useless debug print --- bootstrap/ISBPL.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/bootstrap/ISBPL.java b/bootstrap/ISBPL.java index d70c7cc..de39deb 100644 --- a/bootstrap/ISBPL.java +++ b/bootstrap/ISBPL.java @@ -2190,10 +2190,6 @@ class ISBPLFrame { } if(map.containsKey(name)) return map.get(name); - if(parent != null) { - if(context.printCalls) - System.err.println("Referring to parent frame..."); - return parent.resolve(name); } return null; }