aboutsummaryrefslogtreecommitdiff
path: root/internal/cvss/v3metric.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/cvss/v3metric.go')
-rw-r--r--internal/cvss/v3metric.go9
1 files changed, 3 insertions, 6 deletions
diff --git a/internal/cvss/v3metric.go b/internal/cvss/v3metric.go
index e9a6763..fc4c860 100644
--- a/internal/cvss/v3metric.go
+++ b/internal/cvss/v3metric.go
@@ -323,12 +323,9 @@ func (m v3Metric) Key() Key {
// Convert string to CVSS 3.1 metric.
func getV3Metric(version Version, s string) (v3Metric, error) {
- // get metric
- m, ok := v3MetricStrLut[s]
- if !ok {
+ if m, ok := v3MetricStrLut[s]; ok {
+ return m, nil
+ } else {
return v3InvalidMetric, newBadMetric(version, s)
}
-
- // return success
- return m, nil
}