Skip to content

Commit

Permalink
Merge pull request #746 from hazendaz/thorough-cleanup
Browse files Browse the repository at this point in the history
[cleanup] Change 'def' to proper maps
  • Loading branch information
hazendaz authored Dec 31, 2023
2 parents 2906403 + 6dfbc4d commit 180cea6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ interface SpotBugsInfo {

static final String CLASS_SUFFIX = '.class'

def spotbugsEfforts = [Max: "max", Min: "min", Default: "default"]
Map<String, String> spotbugsEfforts = [Max: "max", Min: "min", Default: "default"]

def spotbugsThresholds = [High: "high", Exp: "experimental", Low: "low", Medium: "medium", Default: "medium"]
Map<String, String> spotbugsThresholds = [High: "high", Exp: "experimental", Low: "low", Medium: "medium", Default: "medium"]

def spotbugsPriority = ["unknown", "High", "Medium", "Low"]
}

0 comments on commit 180cea6

Please sign in to comment.