Option.apply(x) の呼び出しをエミュレートしている箇所を報告します。

例:


  if (x == null) None else Some(x)
  if (x != null) Some(x) else None

クイックフィックス適用後:


  Option(x)