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 61b02d8 Javadoc.
61b02d8 is described below
commit 61b02d87f1b8fa4924367a39223206261d1a46fc
Author: Gary Gregory <[email protected]>
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 87a6418..9d4e8d4 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
@@ -19,7 +19,6 @@ package org.apache.logging.log4j.core.util;
import java.io.File;
import java.net.URI;
-import java.net.URL;
import java.util.Objects;
import org.apache.logging.log4j.core.config.ConfigurationSource;
@@ -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");