Skip to content

Commit 5ab55f8

Browse files
committed
Fix isBlank not member of String on CI
1 parent 426d34a commit 5ab55f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/src/dotty/tools/dotc/config/Settings.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ object Settings:
195195
case s:String => s == choice.toString()
196196
case _ => false
197197
override def toString(): String =
198-
s"\n\t- $choice${if description.isBlank() then "" else s"\t: $description"}"
198+
s"\n\t- $choice${if description.isEmpty() then "" else s"\t: $description"}"
199199
end Setting
200200

201201
class SettingGroup {

0 commit comments

Comments
 (0)