From 36eefd08367be0936330225aafbfd0f1fd5fdd93 Mon Sep 17 00:00:00 2001
From: Jeremy Long
Date: Sat, 5 Mar 2016 13:18:32 -0500
Subject: [PATCH] doclint fixes
---
.../reporting/VelocityLoggerRedirect.java | 20 +++++++++----------
1 file changed, 9 insertions(+), 11 deletions(-)
diff --git a/dependency-check-core/src/main/java/org/owasp/dependencycheck/reporting/VelocityLoggerRedirect.java b/dependency-check-core/src/main/java/org/owasp/dependencycheck/reporting/VelocityLoggerRedirect.java
index 5aa633fae..ecad6c2f3 100644
--- a/dependency-check-core/src/main/java/org/owasp/dependencycheck/reporting/VelocityLoggerRedirect.java
+++ b/dependency-check-core/src/main/java/org/owasp/dependencycheck/reporting/VelocityLoggerRedirect.java
@@ -24,15 +24,14 @@ import org.slf4j.LoggerFactory;
/**
*
- * DependencyCheck uses {@link org.slf4j.Logger} as a logging framework, and Apache Velocity uses a custom
- * logging implementation that outputs to a file named velocity.log by default. This class is an implementation of a
- * custom Velocity logger that redirects all velocity logging to the Java Logger class.
+ * DependencyCheck uses {@link org.slf4j.Logger} as a logging framework, and Apache Velocity uses a custom logging implementation
+ * that outputs to a file named velocity.log by default. This class is an implementation of a custom Velocity logger that
+ * redirects all velocity logging to the Java Logger class.
*
- * This class was written to address permission issues when using Dependency-Check in a server environment (such as the
- * Jenkins plugin). In some circumstances, Velocity would attempt to create velocity.log in an un-writable
- * directory.
+ * This class was written to address permission issues when using Dependency-Check in a server environment (such as the Jenkins
+ * plugin). In some circumstances, Velocity would attempt to create velocity.log in an un-writable directory.
*
- * @author Steve Springett
+ * @author Steve Springett
*/
public class VelocityLoggerRedirect implements LogChute {
@@ -52,8 +51,7 @@ public class VelocityLoggerRedirect implements LogChute {
}
/**
- * Given a Velocity log level and message, this method will call the appropriate Logger level and log the specified
- * values.
+ * Given a Velocity log level and message, this method will call the appropriate Logger level and log the specified values.
*
* @param level the logging level
* @param message the message to be logged
@@ -82,8 +80,8 @@ public class VelocityLoggerRedirect implements LogChute {
}
/**
- * Given a Velocity log level, message and Throwable, this method will call the appropriate Logger level and log the
- * specified values.
+ * Given a Velocity log level, message and Throwable, this method will call the appropriate Logger level and log the specified
+ * values.
*
* @param level the logging level
* @param message the message to be logged