例:
def notNull(o, defaultValue) { o != null ? o : defaultValue }
クイックフィックス適用後:
def notNull(o, defaultValue) { o ?: defaultValue }