This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-bcel.git
commit 1cf711d897d0d7117b4ad4fa2254cfc2fc20aab0 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Mar 31 14:57:25 2024 -0400 Format tweaks --- src/examples/ListClass.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/examples/ListClass.java b/src/examples/ListClass.java index 3a7c91d6..b973fbd7 100644 --- a/src/examples/ListClass.java +++ b/src/examples/ListClass.java @@ -195,7 +195,6 @@ public class ListClass { public static void printCode(final Method[] methods, final boolean verbose) { for (final Method method : methods) { System.out.println(method); - final Code code = method.getCode(); if (code != null) { System.out.println(code.toString(verbose)); @@ -207,13 +206,9 @@ public class ListClass { boolean constants; boolean verbose; boolean classDep; - boolean noContents; - boolean recurse; - Map<String, String> listedClasses; - List<String> excludeName; public ListClass(final boolean code, final boolean constants, final boolean verbose, final boolean classDep, final boolean noContents,