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/15 21:15:25 UTC

[logging-log4j2] branch master updated (3c61ec5 -> 757fde1)

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

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


    from 3c61ec5  Test should clean up after itself.
     new 66eb9db  Javadoc.
     new 757fde1  Javadoc.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 log4j-api/src/main/java/org/apache/logging/log4j/util/LoaderUtil.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

[logging-log4j2] 01/02: Javadoc.

Posted by gg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 66eb9db34d0642e7fb489a67d7149f25d0961120
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Jan 15 16:13:46 2022 -0500

    Javadoc.
---
 log4j-api/src/main/java/org/apache/logging/log4j/util/LoaderUtil.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/log4j-api/src/main/java/org/apache/logging/log4j/util/LoaderUtil.java b/log4j-api/src/main/java/org/apache/logging/log4j/util/LoaderUtil.java
index b329121..29ac532 100644
--- a/log4j-api/src/main/java/org/apache/logging/log4j/util/LoaderUtil.java
+++ b/log4j-api/src/main/java/org/apache/logging/log4j/util/LoaderUtil.java
@@ -239,7 +239,8 @@ public final class LoaderUtil {
 
     /**
      * Loads and instantiates a Class using the default constructor.
-     *
+     * 
+     * @param <T> the type of the class modeled by the {@code Class} object.
      * @param clazz The class.
      * @param <T> The Class's type.
      * @return new instance of the class.

[logging-log4j2] 02/02: Javadoc.

Posted by gg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 757fde124c68fb1b041692561f423a49f6b48387
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Jan 15 16:15:22 2022 -0500

    Javadoc.
---
 log4j-api/src/main/java/org/apache/logging/log4j/util/LoaderUtil.java | 1 -
 1 file changed, 1 deletion(-)

diff --git a/log4j-api/src/main/java/org/apache/logging/log4j/util/LoaderUtil.java b/log4j-api/src/main/java/org/apache/logging/log4j/util/LoaderUtil.java
index 29ac532..8cd313b 100644
--- a/log4j-api/src/main/java/org/apache/logging/log4j/util/LoaderUtil.java
+++ b/log4j-api/src/main/java/org/apache/logging/log4j/util/LoaderUtil.java
@@ -242,7 +242,6 @@ public final class LoaderUtil {
      * 
      * @param <T> the type of the class modeled by the {@code Class} object.
      * @param clazz The class.
-     * @param <T> The Class's type.
      * @return new instance of the class.
      * @throws IllegalAccessException if the class can't be instantiated through a public constructor
      * @throws InstantiationException if there was an exception whilst instantiating the class