Skip to content

Commit cdf9fc7

Browse files
committed
lint: single quote strings
1 parent f18dfd0 commit cdf9fc7

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
@@ -127,7 +127,7 @@ class SummaryCreator {
127127

128128
private String maybeMaskFusionMount(String value) {
129129
if(config.summary.maskFusionMount) {
130-
return value.replace("/fusion", "")
130+
return value.replace('/fusion', '')
131131
}
132132
return value
133133
}

0 commit comments

Comments
 (0)