File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1414 or
1515 warning instanceof ExtractionUnknownProblem
1616select warning ,
17- "Extraction failed in " + warning .getFile ( ) + " with warning " + warning . getProblemMessage ( ) ,
18- warning .getSeverity ( )
17+ "Extraction failed in " + warning .getFile ( ) + " with warning " +
18+ warning . getProblemMessage ( ) . replaceAll ( "$" , "$$" ) , warning .getSeverity ( )
Original file line number Diff line number Diff line change @@ -17,5 +17,6 @@ from ExtractionError error
1717where
1818 error instanceof ExtractionUnknownError or
1919 exists ( error .getFile ( ) .getRelativePath ( ) )
20- select error , "Extraction failed in " + error .getFile ( ) + " with error " + error .getErrorMessage ( ) ,
21- error .getSeverity ( )
20+ select error ,
21+ "Extraction failed in " + error .getFile ( ) + " with error " +
22+ error .getErrorMessage ( ) .replaceAll ( "$" , "$$" ) , error .getSeverity ( )
You can’t perform that action at this time.
0 commit comments