Reports ternary expressions which can be replaced by a safe call.

Example:


  def charArray(String s) {
      s == null ? null : s.toCharArray()
  }

After the quick-fix is applied:


  def charArray(String s) {
      s?.toCharArray()
  }