checkstyle fix

Former-commit-id: 07c248e22163c69f924e02932b94952c8a5ef3a1
This commit is contained in:
Jeremy Long
2013-05-10 06:05:59 -04:00
parent 1fe56dbff7
commit 912b0ef8da

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
}