Skip to content

Commit

Permalink
changes as per review
Browse files Browse the repository at this point in the history
  • Loading branch information
munishchouhan committed May 31, 2024
1 parent 5ab1c90 commit 9ecdc24
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,11 +140,6 @@ class MetricsServiceImpl implements MetricsService {

protected static String extractOrgFromKey(String key) {
Matcher matcher = orgDateKeyPattern.matcher(key)
if (matcher.matches()) {
return matcher.group(2)
} else {
return "unknown"
}

return matcher.matches() ? matcher.group(2) : "unknown"
}
}

0 comments on commit 9ecdc24

Please sign in to comment.