remove a useless debug print

This commit is contained in:
Daniella 2022-05-02 10:24:26 +02:00
parent 4cae70d8cb
commit 3848562eaf

View file

@ -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;
}