Reports ternary expressions which can be replaced by an elvis expression.

Example:


  def notNull(o, defaultValue) {
      o != null ? o : defaultValue
  }

After the quick-fix is applied:


  def notNull(o, defaultValue) {
      o ?: defaultValue
  }