Codebase list apache-log4j2 / 11dcfae
Worked around a javadoc bug in Java 10 causing an IllegalArgumentException (Closes: #905139) Emmanuel Bourg 5 years ago
3 changed file(s) with 17 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
55 - Build the new log4j-core-java9 module
66 - Build the mongodb3 module and ignore the mongodb2 one
77 - Ignore the new log4j-jdbc-dbcp2, log4j-jpa and log4j-slf4j18-impl modules
8 * Worked around a javadoc bug in Java 10 causing an IllegalArgumentException
9 (Closes: #905139)
810 * Standards-Version updated to 4.1.5
911 * Use salsa.debian.org Vcs-* URLs
1012
0 Description: Workaround for a javadoc bug in Java 10 triggering an IllegalArgumentException
1 Author: Emmanuel Bourg <ebourg@apache.org>
2 Forwarded: no
3 --- a/log4j-core/src/main/java/org/apache/logging/log4j/core/tools/picocli/CommandLine.java
4 +++ b/log4j-core/src/main/java/org/apache/logging/log4j/core/tools/picocli/CommandLine.java
5 @@ -2814,7 +2814,7 @@
6 */
7 public static class Help {
8 /** Constant String holding the default program name: {@value} */
9 - protected static final String DEFAULT_COMMAND_NAME = "<main class>";
10 + protected static final String DEFAULT_COMMAND_NAME = new String("<main class>");
11
12 /** Constant String holding the default string that separates options from option parameters: {@value} */
13 protected static final String DEFAULT_SEPARATOR = "=";
00 01-disable-kafka-appender.patch
11 03-mongodb-compatibility.patch
2 05-fix-javadoc-errors.patch