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 2022/01/07 15:53:08 UTC

[logging-log4j2] branch release-2.x updated: Javadoc cleanup.

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


The following commit(s) were added to refs/heads/release-2.x by this push:
     new c8dd8df  Javadoc cleanup.
c8dd8df is described below

commit c8dd8df901affc179e2fe0afd70f93640e2e2ee1
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Jan 7 10:53:06 2022 -0500

    Javadoc cleanup.
---
 .../org/apache/log4j/spi/RepositorySelector.java   | 30 +++++++++++-----------
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/log4j-1.2-api/src/main/java/org/apache/log4j/spi/RepositorySelector.java b/log4j-1.2-api/src/main/java/org/apache/log4j/spi/RepositorySelector.java
index 9566659..86434a5 100644
--- a/log4j-1.2-api/src/main/java/org/apache/log4j/spi/RepositorySelector.java
+++ b/log4j-1.2-api/src/main/java/org/apache/log4j/spi/RepositorySelector.java
@@ -17,26 +17,26 @@
 package org.apache.log4j.spi;
 
 /**
-
- The <code>LogManager</code> uses one (and only one)
- <code>RepositorySelector</code> implementation to select the
- {@link org.apache.log4j.spi.LoggerRepository} for a particular application context.
-
- <p>It is the responsibility of the <code>RepositorySelector</code>
- implementation to track the application context. Log4j makes no
- assumptions about the application context or on its management.
-
- <p>See also {@link org.apache.log4j.LogManager LogManager}.
-
- @since 1.2
-
+ * 
+ * The <code>LogManager</code> uses one (and only one) <code>RepositorySelector</code> implementation to select the
+ * {@link LoggerRepository} for a particular application context.
+ * 
+ * <p>
+ * It is the responsibility of the <code>RepositorySelector</code> implementation to track the application context.
+ * Log4j makes no assumptions about the application context or on its management.
+ * </p>
+ * 
+ * <p>
+ * See also {@link org.apache.log4j.LogManager LogManager}.
+ * 
+ * @since 1.2
  */
 public interface RepositorySelector {
 
     /**
-     * Returns a {@link org.apache.log4j.spi.LoggerRepository} depending on the
-     * context. Implementers must make sure that a valid (non-null)
+     * Gets a {@link LoggerRepository} depending on the context. Implementers must make sure that a valid (non-null)
      * LoggerRepository is returned.
+     * 
      * @return a LoggerRepository.
      */
     LoggerRepository getLoggerRepository();