public class Foo {
/**
* @deprecated
*/
public Foo() {
}
public Foo(String text) {
}
}
public class Bar extends Foo {
public Bar() {
super("hello");
}
}
Invoke Find Usages on the deprecated constructor and you will find the Bar constructor although this one uses the other.
Description
public class Foo {
/**
* @deprecated
*/
public Foo() {
}
public Foo(String text) {
}
}
public class Bar extends Foo {
public Bar() {
super("hello");
}
}
Invoke Find Usages on the deprecated constructor and you will find the Bar constructor although this one uses the other.