This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch release-2.x in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
commit 6bd9e068e0a2e37f20c3a926d822206bfed08d9b Author: Gary Gregory <[email protected]> AuthorDate: Sat Feb 19 18:31:16 2022 -0500 Javadoc. --- .../src/main/java/org/apache/log4j/spi/LocationInfo.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/log4j-1.2-api/src/main/java/org/apache/log4j/spi/LocationInfo.java b/log4j-1.2-api/src/main/java/org/apache/log4j/spi/LocationInfo.java index a3f2fd1..4b20f2d 100644 --- a/log4j-1.2-api/src/main/java/org/apache/log4j/spi/LocationInfo.java +++ b/log4j-1.2-api/src/main/java/org/apache/log4j/spi/LocationInfo.java @@ -106,28 +106,28 @@ public class LocationInfo implements Serializable { } /** - * Return the fully qualified class name of the caller making the logging request. + * Gets the fully qualified class name of the caller making the logging request. */ public String getClassName() { return stackTraceElement.getClassName(); } /** - * Return the file name of the caller. + * Gets the file name of the caller. */ public String getFileName() { return stackTraceElement.getFileName(); } /** - * Returns the line number of the caller. + * Gets the line number of the caller. */ public String getLineNumber() { return Integer.toString(stackTraceElement.getLineNumber()); } /** - * Returns the method name of the caller. + * Gets the method name of the caller. */ public String getMethodName() { return stackTraceElement.getMethodName();
