This is an automated email from the ASF dual-hosted git repository.
slachiewicz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-dist-tool.git
The following commit(s) were added to refs/heads/master by this push:
new 53ab829 checkstyle fix
53ab829 is described below
commit 53ab829a7c90df48ad586a1d69c3c241d0356b0c
Author: Sylwester Lachiewicz <[email protected]>
AuthorDate: Sat Aug 20 11:14:27 2022 +0200
checkstyle fix
---
.../org/apache/maven/dist/tools/index/DistCheckIndexPageReport.java | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git
a/src/main/java/org/apache/maven/dist/tools/index/DistCheckIndexPageReport.java
b/src/main/java/org/apache/maven/dist/tools/index/DistCheckIndexPageReport.java
index 7d2ddbc..464bac6 100644
---
a/src/main/java/org/apache/maven/dist/tools/index/DistCheckIndexPageReport.java
+++
b/src/main/java/org/apache/maven/dist/tools/index/DistCheckIndexPageReport.java
@@ -208,7 +208,9 @@ public class DistCheckIndexPageReport
}
catch ( DateTimeParseException pe )
{
- getLog().warn( "Unable to parse dates for fields from metadata:\""
+ metadataDate + "\" and index:\"" + indexDate + "\"" );
+ getLog().warn(
+ "Unable to parse dates for fields from metadata:\"" +
metadataDate
+ + "\" and index:\"" + indexDate + "\"" );
return false;
}
}