converted abstract class to a final class with a private constructor

Former-commit-id: 582a421e69eac2bfc008ca8ee2fe88c7734c9a31
This commit is contained in:
Jeremy Long
2014-07-20 06:36:33 -04:00
parent 803fcf146b
commit 3565098650

View File

@@ -22,7 +22,7 @@ package org.owasp.dependencycheck.data.cpe;
*
* @author Jeremy Long <jeremy.long@owasp.org>
*/
public abstract class Fields {
public final class Fields {
/**
* The key for the name document id.
@@ -36,7 +36,10 @@ public abstract class Fields {
* The key for the product field.
*/
public static final String PRODUCT = "product";
/**
* The key for the version field.
* Private constructor as this is more of an enumeration rather then a full class.
*/
private Fields() {
}
}