From 5f6bd58f75d149de3684f0378fad0e8d4336c98a Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Mon, 3 Jun 2024 21:32:39 +0200 Subject: [PATCH] Fix a Javadoc warning Javadoc is picky about default constructors, let's shut it up with an explicit one. Change-Id: Ib7b924585334451d80948890ddedda256b0a1461 Signed-off-by: Robert Varga --- filter-manifest-plugin/pom.xml | 1 + .../filter/manifest/plugin/FilterManifestMojo.java | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/filter-manifest-plugin/pom.xml b/filter-manifest-plugin/pom.xml index 9a0e2035f..4383fce0a 100644 --- a/filter-manifest-plugin/pom.xml +++ b/filter-manifest-plugin/pom.xml @@ -14,6 +14,7 @@ 14.0.0-SNAPSHOT ../odlparent + filter-manifest-plugin maven-plugin ODL :: odlparent :: ${project.artifactId} diff --git a/filter-manifest-plugin/src/main/java/org/opendaylight/odlparent/filter/manifest/plugin/FilterManifestMojo.java b/filter-manifest-plugin/src/main/java/org/opendaylight/odlparent/filter/manifest/plugin/FilterManifestMojo.java index 01f5a8716..f34189c61 100644 --- a/filter-manifest-plugin/src/main/java/org/opendaylight/odlparent/filter/manifest/plugin/FilterManifestMojo.java +++ b/filter-manifest-plugin/src/main/java/org/opendaylight/odlparent/filter/manifest/plugin/FilterManifestMojo.java @@ -50,6 +50,13 @@ public class FilterManifestMojo extends AbstractMojo { @Parameter(required = true) private List retainedAttributes; + /** + * Default constructor. + */ + public FilterManifestMojo() { + // to fix javadoc warnings + } + @Override public void execute() throws MojoExecutionException { LOG.debug("Filtering {} to {} retaining {}", inputFile, outputFile, retainedAttributes); -- 2.36.6