Skip to content

Commit

Permalink
Merge pull request #702 from hazendaz/master
Browse files Browse the repository at this point in the history
[cleanup] Use string instead of def in another spot
  • Loading branch information
hazendaz authored Dec 17, 2023
2 parents 28f601b + 927ddc3 commit 2526fe7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -185,10 +185,10 @@ class XDocsReporter {
return
}

def priority = evaluateThresholdParameter(bugInstance.@priority.text())
String type = bugInstance.@type.text()
String category = bugInstance.@category.text()
String message = bugInstance.LongMessage.text()
String priority = evaluateThresholdParameter(bugInstance.@priority.text())
String line = bugInstance.SourceLine.@start[0].text()
log.debug("BugInstance message is ${message}")

Expand Down

0 comments on commit 2526fe7

Please sign in to comment.