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/commons-release-plugin.git
The following commit(s) were added to refs/heads/master by this push: new a1e5396 No need to split string literal. a1e5396 is described below commit a1e5396e968938790489a5eefb2c7d5fe7994c28 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Feb 6 13:10:21 2021 -0500 No need to split string literal. --- .../commons/release/plugin/velocity/HeaderHtmlVelocityDelegate.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/release/plugin/velocity/HeaderHtmlVelocityDelegate.java b/src/main/java/org/apache/commons/release/plugin/velocity/HeaderHtmlVelocityDelegate.java index 2fc4edf..8e2042d 100755 --- a/src/main/java/org/apache/commons/release/plugin/velocity/HeaderHtmlVelocityDelegate.java +++ b/src/main/java/org/apache/commons/release/plugin/velocity/HeaderHtmlVelocityDelegate.java @@ -31,9 +31,10 @@ import org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader; * @since 1.3 */ public class HeaderHtmlVelocityDelegate { + /** The location of the velocity tempate for this class. */ - private static final String TEMPLATE = "resources/org/apache/commons/release/plugin" - + "/velocity/HEADER.vm"; + private static final String TEMPLATE = "resources/org/apache/commons/release/plugin/velocity/HEADER.vm"; + /** The private constructor to be used by the {@link HeaderHtmlVelocityDelegateBuilder}. */ private HeaderHtmlVelocityDelegate() { }