You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by gg...@apache.org on 2021/12/30 14:01:44 UTC

[logging-log4j2] 03/03: Format Javadoc.

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 3cd08e2ff1862d3e4b107f4750a8888fb6b4093c
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Dec 30 09:01:38 2021 -0500

    Format Javadoc.
---
 .../java/org/apache/log4j/spi/Configurator.java    | 26 ++++++++++------------
 1 file changed, 12 insertions(+), 14 deletions(-)

diff --git a/log4j-1.2-api/src/main/java/org/apache/log4j/spi/Configurator.java b/log4j-1.2-api/src/main/java/org/apache/log4j/spi/Configurator.java
index 39e6d87..0305fe4 100644
--- a/log4j-1.2-api/src/main/java/org/apache/log4j/spi/Configurator.java
+++ b/log4j-1.2-api/src/main/java/org/apache/log4j/spi/Configurator.java
@@ -40,24 +40,22 @@ public interface Configurator {
 
 
     /**
-     Interpret a resource pointed by a InputStream and set up log4j accordingly.
-
-     The configuration is done relative to the <code>hierarchy</code>
-     parameter.
-
-     @param inputStream The InputStream to parse
-
-     @since 1.2.17
+     * Interpret a resource pointed by a InputStream and set up log4j accordingly.
+     * 
+     * The configuration is done relative to the <code>hierarchy</code> parameter.
+     * 
+     * @param inputStream The InputStream to parse
+     * 
+     * @since 1.2.17
      */
     void doConfigure(InputStream inputStream, final LoggerContext loggerContext);
 
     /**
-     Interpret a resource pointed by a URL and set up log4j accordingly.
-
-     The configuration is done relative to the <code>hierarchy</code>
-     parameter.
-
-     @param url The URL to parse
+     * Interpret a resource pointed by a URL and set up log4j accordingly.
+     * 
+     * The configuration is done relative to the <code>hierarchy</code> parameter.
+     * 
+     * @param url The URL to parse
      */
     void doConfigure(URL url, final LoggerContext loggerContext);
 }