このような接頭辞は安全に除去できます。
例:
fun example() {
$"Example: prefix of length one is always redundant"
$$"Example: string contains no interpolated values"
$$"Example: $$ dollars are plain characters here $$"
}
クイックフィックス適用後:
fun example() {
"Example: prefix of length one is always redundant"
"Example: string contains no interpolated values"
"Example: $$ dollars are plain characters here $$"
}