Let's say I have something like this:
public class MyClass {
private static MyClass sInstance;
public static MyClass getInstance() {
return sInstance;
}
}
IntelliJ gives me this warning:
'@link' pointing to the containing class is not required
What is the correct / usual way to write this piece of Javadoc?
How would you write it?
source
share