例:
def charArray(String s) { s == null ? null : s.toCharArray() }
クイックフィックス適用後:
def charArray(String s) { s?.toCharArray() }