aboutsummaryrefslogtreecommitdiff
path: root/internal/cvss/cvss.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/cvss/cvss.go')
-rw-r--r--internal/cvss/cvss.go18
1 files changed, 9 insertions, 9 deletions
diff --git a/internal/cvss/cvss.go b/internal/cvss/cvss.go
index 8fc6314..057a163 100644
--- a/internal/cvss/cvss.go
+++ b/internal/cvss/cvss.go
@@ -388,15 +388,15 @@ var v3KeyIds = map[string]v3Key {
"MA": v3ModifiedAvailability,
}
-// Get metric key from string.
-func getV3KeyFromString(s string) (v3Key, error) {
- k, ok := v3KeyIds[s]
- if ok {
- return k, nil
- } else {
- return v3InvalidKey, fmt.Errorf("invalid metric key: %s", s)
- }
-}
+// // Get metric key from string.
+// func getV3KeyFromString(s string) (v3Key, error) {
+// k, ok := v3KeyIds[s]
+// if ok {
+// return k, nil
+// } else {
+// return v3InvalidKey, newBadKey(V30, s)
+// }
+// }
// Get metric key name.
func (k v3Key) Name() string {