From fbbbae0980d582066b1822cc04f7270144ad0ae5 Mon Sep 17 00:00:00 2001 From: Volker Berlin Date: Sun, 31 Jul 2022 11:39:56 +0200 Subject: [PATCH] remove debug code --- src/de/inetsoftware/classparser/BootstrapMethod.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/de/inetsoftware/classparser/BootstrapMethod.java b/src/de/inetsoftware/classparser/BootstrapMethod.java index 59e5248..07ee499 100644 --- a/src/de/inetsoftware/classparser/BootstrapMethod.java +++ b/src/de/inetsoftware/classparser/BootstrapMethod.java @@ -61,7 +61,7 @@ public class BootstrapMethod { // argCount is 5 if the method is LambdaMetafactory.altMetafactory // occur if the Lambda type has 2 types compound with "&" like in java.time.chrono.AbstractChronology for( int i = 3; i < argCount; i++ ) { - System.err.println( constantPool.get( input.readUnsignedShort() ) ); + constantPool.get( input.readUnsignedShort() ); } }