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
The following commit(s) were added to refs/heads/master by this push:
new fe41010c Merge some string literals
fe41010c is described below
commit fe41010c26d24d08ccfff38b3de85d683b502197
Author: Gary D. Gregory <[email protected]>
AuthorDate: Sun Jul 20 16:09:18 2025 -0400
Merge some string literals
---
src/examples/ListClass.java | 16 +++++++++++-----
1 file changed, 11 insertions(+), 5 deletions(-)
diff --git a/src/examples/ListClass.java b/src/examples/ListClass.java
index ceb34c37..5cfc506d 100644
--- a/src/examples/ListClass.java
+++ b/src/examples/ListClass.java
@@ -161,11 +161,17 @@ public class ListClass {
exclude = true;
break;
case "-help":
- System.out.println("Usage: java listclass [-constants]
[-code] [-brief] " + "[-dependencies] [-nocontents] [-recurse] class... "
- + "[-exclude <list>]\n" + "-constants Print
constants table (constant pool)\n" + "-code Dump byte code of
methods\n"
- + "-brief Brief listing\n" + "-dependencies
Show class dependencies\n"
- + "-nocontents Do not print field/method
information\n" + "-recurse Recurse into dependent classes\n"
- + "-exclude <list> Do not list classes beginning with
" + "strings in <list>");
+ // @formatter:off
+ System.out.println(
+ "Usage: java listclass [-constants] [-code] [-brief]
[-dependencies] [-nocontents] [-recurse] class... [-exclude <list>]\n"
+ + "-constants Print constants table (constant
pool)\n"
+ + "-code Dump byte code of methods\n"
+ + "-brief Brief listing\n"
+ + "-dependencies Show class dependencies\n"
+ + "-nocontents Do not print field/method
information\n"
+ + "-recurse Recurse into dependent classes\n"
+ + "-exclude <list> Do not list classes beginning with
strings in <list>");
+ // @formatter:on
System.exit(0);
break;
default: