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/11 20:38:04 UTC

[logging-log4j2] branch master updated: Javadoc.

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


The following commit(s) were added to refs/heads/master by this push:
     new d72f377  Javadoc.
d72f377 is described below

commit d72f37754f1ac5cabc24a55368c61941c760886d
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Tue Jan 11 15:37:24 2022 -0500

    Javadoc.
---
 log4j-core/src/main/java/org/apache/logging/log4j/core/util/Source.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/log4j-core/src/main/java/org/apache/logging/log4j/core/util/Source.java b/log4j-core/src/main/java/org/apache/logging/log4j/core/util/Source.java
index db63c83..1b0e65f 100644
--- a/log4j-core/src/main/java/org/apache/logging/log4j/core/util/Source.java
+++ b/log4j-core/src/main/java/org/apache/logging/log4j/core/util/Source.java
@@ -21,7 +21,6 @@ import org.apache.logging.log4j.core.config.ConfigurationSource;
 
 import java.io.File;
 import java.net.URI;
-import java.net.URL;
 import java.util.Objects;
 
 /**
@@ -60,6 +59,7 @@ public class Source {
      * Constructs a new {@code Source} from the specified URI.
      *
      * @param uri the URI where the input stream originated
+     * @param lastModified Not used.
      */
     public Source(final URI uri, final long lastModified) {
         this.uri = Objects.requireNonNull(uri, "URI is null");