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 7b7a12cc28547b8dcc806f36184aa863b2de0001
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Feb 5 15:12:46 2022 -0500

    Format class.
    
    Conflicts:
        log4j-1.2-api/src/main/java/org/apache/log4j/spi/LocationInfo.java
---
 .../java/org/apache/log4j/spi/LocationInfo.java    | 22 ++++++++++------------
 1 file changed, 10 insertions(+), 12 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 df49fa9..c5e5b5e 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
@@ -17,9 +17,9 @@
 package org.apache.log4j.spi;
 
 /**
- The internal representation of caller location information.
-
- @since 0.8.3
+ * The internal representation of caller location information.
+ * 
+ * @since 0.8.3
  */
 public class LocationInfo implements java.io.Serializable {
 
@@ -36,17 +36,15 @@ public class LocationInfo implements java.io.Serializable {
     }
 
     /**
-     When location information is not available the constant
-     <code>NA</code> is returned. Current value of this string
-     constant is <b>?</b>.  */
+     * When location information is not available the constant <code>NA</code> 
is returned. Current value of this string
+     * constant is <b>?</b>.
+     */
     public final static String NA = "?";
 
     static final long serialVersionUID = -1325822038990805636L;
 
-
     /**
-     Return the fully qualified class name of the caller making the
-     logging request.
+     * Return the fully qualified class name of the caller making the logging 
request.
      @return The class name.
      */
     public String getClassName() {
@@ -54,7 +52,7 @@ public class LocationInfo implements java.io.Serializable {
     }
 
     /**
-     Return the file name of the caller.
+     * Return the file name of the caller.
      @return the file name.
      */
     public String getFileName() {
@@ -62,7 +60,7 @@ public class LocationInfo implements java.io.Serializable {
     }
 
     /**
-     Returns the line number of the caller.
+     * Returns the line number of the caller.
      @return The line number.
      */
     public String getLineNumber() {
@@ -70,7 +68,7 @@ public class LocationInfo implements java.io.Serializable {
     }
 
     /**
-     Returns the method name of the caller.
+     * Returns the method name of the caller.
      @return The method name.
      */
     public String getMethodName() {

Reply via email to