From 15180d93b0a9ba0e162d4300788195e4c77c759b Mon Sep 17 00:00:00 2001 From: Robert Scholte Date: Mon, 15 Aug 2016 14:48:09 +0000 Subject: [PATCH] [MPLUGIN-292] HelpMojo contains malformed HTML which causes javadoc to fail under JDK 8 Apply proper html escaping git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1756391 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/main/resources/help-class-source.vm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maven-plugin-tools-generators/src/main/resources/help-class-source.vm b/maven-plugin-tools-generators/src/main/resources/help-class-source.vm index 5393e53..b618c0e 100644 --- a/maven-plugin-tools-generators/src/main/resources/help-class-source.vm +++ b/maven-plugin-tools-generators/src/main/resources/help-class-source.vm @@ -359,7 +359,7 @@ public class HelpMojo * @param str String to repeat * @param repeat number of times to repeat str * @return String with repeated String - * @throws NegativeArraySizeException if repeat < 0 + * @throws NegativeArraySizeException if repeat < 0 * @throws NullPointerException if str is null */ private static String repeat( String str, int repeat )