JavaDoc не наследует документацию по Android Studio
Я не могу унаследовать документацию, используя тег {@inheritDoc}
/**
* {@inheritDoc}
*/
@Override
public int hashCode() {
int hash = 7;
long temp;
temp = Double.doubleToLongBits(real);
hash = 31 * hash + ((int) (temp ^ (temp >>> 32)));
temp = Double.doubleToLongBits(imag);
hash = 31 * hash + ((int) (temp ^ (temp >>> 32)));
return hash;
}
Я уже нашел много решений, но они не работают...