checkstyle corrections

Former-commit-id: ecc262c75890ef4c8760cb41e7948cb6decdf5d5
This commit is contained in:
Jeremy Long
2014-09-01 08:13:53 -04:00
parent 99d8a07f4a
commit 08d001ee05

View File

@@ -289,7 +289,7 @@ public class DependencyCheckMojo extends ReportAggregationMojo {
*
* @deprecated the internal report is no longer supported
*/
@SuppressWarnings({"CanBeFinal"})
@SuppressWarnings("CanBeFinal")
@Parameter(property = "externalReport")
@Deprecated
private String externalReport = null;
@@ -392,11 +392,13 @@ public class DependencyCheckMojo extends ReportAggregationMojo {
Settings.setBoolean(Settings.KEYS.AUTO_UPDATE, autoUpdate);
if (externalReport != null) {
LOGGER.warning("The 'externalReport' option was set; this configuration option has been removed. Please update the dependency-check-maven plugin's configuration");
LOGGER.warning("The 'externalReport' option was set; this configuration option has been removed. "
+ "Please update the dependency-check-maven plugin's configuration");
}
if (proxyUrl != null && !proxyUrl.isEmpty()) {
LOGGER.warning("Deprecated configuration detected, proxyUrl will be ignored; use the maven settings to configure the proxy instead");
LOGGER.warning("Deprecated configuration detected, proxyUrl will be ignored; use the maven settings "
+ "to configure the proxy instead");
}
final Proxy proxy = getMavenProxy();
if (proxy != null) {