checkstyle fix

Former-commit-id: f8a632d0d1f2c7c3b6b7e2553cda738b725f14d7
This commit is contained in:
Jeremy Long
2013-05-10 06:05:59 -04:00
parent fd61f7d363
commit 4d7b4ce877

View File

@@ -48,9 +48,21 @@ import org.owasp.dependencycheck.dependency.Dependency;
*/
public class ReportGenerator {
/**
* An enumeration of the report formats.
*/
public enum Format {
/**
* Generate all reports.
*/
ALL,
/**
* Generate XML report.
*/
XML,
/**
* Generate HTML report.
*/
HTML
}