Reports emulating a call to Option.apply(x).

Example:


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

After the quick-fix is applied:


  Option(x)