Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
apache-log4j2
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Debian Java Maintainers
apache-log4j2
Commits
11dcfae2
Commit
11dcfae2
authored
6 years ago
by
Emmanuel Bourg
Browse files
Options
Downloads
Patches
Plain Diff
Worked around a javadoc bug in Java 10 causing an IllegalArgumentException (Closes: #905139)
parent
99467ca4
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
debian/changelog
+2
-0
2 additions, 0 deletions
debian/changelog
debian/patches/05-fix-javadoc-errors.patch
+14
-0
14 additions, 0 deletions
debian/patches/05-fix-javadoc-errors.patch
debian/patches/series
+1
-0
1 addition, 0 deletions
debian/patches/series
with
17 additions
and
0 deletions
debian/changelog
+
2
−
0
View file @
11dcfae2
...
...
@@ -6,6 +6,8 @@ apache-log4j2 (2.11.1-1) UNRELEASED; urgency=medium
- Build the new log4j-core-java9 module
- Build the mongodb3 module and ignore the mongodb2 one
- Ignore the new log4j-jdbc-dbcp2, log4j-jpa and log4j-slf4j18-impl modules
* Worked around a javadoc bug in Java 10 causing an IllegalArgumentException
(Closes: #905139)
* Standards-Version updated to 4.1.5
* Use salsa.debian.org Vcs-* URLs
...
...
This diff is collapsed.
Click to expand it.
debian/patches/05-fix-javadoc-errors.patch
0 → 100644
+
14
−
0
View file @
11dcfae2
Description: Workaround for a javadoc bug in Java 10 triggering an IllegalArgumentException
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: no
--- a/log4j-core/src/main/java/org/apache/logging/log4j/core/tools/picocli/CommandLine.java
+++ b/log4j-core/src/main/java/org/apache/logging/log4j/core/tools/picocli/CommandLine.java
@@ -2814,7 +2814,7 @@
*/
public static class Help {
/** Constant String holding the default program name: {@value} */
- protected static final String DEFAULT_COMMAND_NAME = "<main class>";
+ protected static final String DEFAULT_COMMAND_NAME = new String("<main class>");
/** Constant String holding the default string that separates options from option parameters: {@value} */
protected static final String DEFAULT_SEPARATOR = "=";
This diff is collapsed.
Click to expand it.
debian/patches/series
+
1
−
0
View file @
11dcfae2
01-disable-kafka-appender.patch
03-mongodb-compatibility.patch
05-fix-javadoc-errors.patch
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment