Our website uses cookies to enhance your browsing experience.
Accept
to the top
>
>
>
Examples of errors detected by the...

Examples of errors detected by the V6073 diagnostic

V6073. It is not recommended to return null or throw exceptions from 'toString' / 'clone' methods.


Apache Solr

V6073 It is not recommended to return null from 'clone' method. UpdateCommand.java 97


@Override
public UpdateCommand clone() {
  try {
    return (UpdateCommand) super.clone();
  } catch (CloneNotSupportedException e) {
    return null;                         // <=
  }
}