Skip to content

Commit

Permalink
Issue checkstyle#12524: Replace backward slash with forward slash whi…
Browse files Browse the repository at this point in the history
…le creating CheckerFrameworkError object in checker-framework.groovy
  • Loading branch information
Vyom-Yadav authored and rnveach committed Dec 15, 2022
1 parent f1372ae commit 1ec1c08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .ci/checker-framework.groovy
Expand Up @@ -184,7 +184,7 @@ private static List<CheckerFrameworkError> getErrorFromText(final List<List<Stri
String lineContent = null
int lineNumber = 0
if (matcher.matches()) {
fileName = matcher.group(fileNameGroup)
fileName = matcher.group(fileNameGroup).replace('\\', '/')
lineNumber = Integer.parseInt(matcher.group(lineNumberGroup))
specifier = XmlUtil.escapeXml(matcher.group(specifierGroup).trim())
message = XmlUtil.escapeXml(matcher.group(messageGroup).trim())
Expand Down

0 comments on commit 1ec1c08

Please sign in to comment.