Skip to content

Commit cd24d5e

Browse files
committed
lint: single quote strings
1 parent 9b71ab6 commit cd24d5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/groovy/nextflow/validation/summary/SummaryCreator.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ class SummaryCreator {
134134

135135
private String maybeMaskFusionMount(String value) {
136136
if(config.summary.maskFusionMount) {
137-
return value.replace("/fusion", "")
137+
return value.replace('/fusion', '')
138138
}
139139
return value
140140
}

0 commit comments

Comments
 (0)