You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by pk...@apache.org on 2022/03/30 21:37:54 UTC

[logging-log4j2] 04/15: Javadoc.

This is an automated email from the ASF dual-hosted git repository.

pkarwasz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git

commit 5fc75612579e8eab1776f581e58faf55f39f0a82
Author: Gary Gregory <ga...@gmail.com>
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();