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 c7893fcb677da9362e669f5f65473cb23bc861c7 Author: Gary Gregory <[email protected]> AuthorDate: Sat Feb 14 08:59:59 2026 -0500 Javadoc --- src/main/java/org/apache/bcel/verifier/exc/Utility.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/apache/bcel/verifier/exc/Utility.java b/src/main/java/org/apache/bcel/verifier/exc/Utility.java index 7d09e427..b0d06c8c 100644 --- a/src/main/java/org/apache/bcel/verifier/exc/Utility.java +++ b/src/main/java/org/apache/bcel/verifier/exc/Utility.java @@ -28,7 +28,12 @@ import java.io.StringWriter; */ public final class Utility { - /** This method returns the stack trace of a Throwable instance as a String. */ + /** + * This method returns the stack trace of a Throwable instance as a String. + * + * @param t the Throwable instance. + * @return the stack trace as a String. + */ public static String getStackTrace(final Throwable t) { final StringWriter sw = new StringWriter(); final PrintWriter pw = new PrintWriter(sw);
