History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: IDEA-16982
Type: Bug Bug
Status: Open Open
Assignee: Unassigned
Reporter: Thomas Singer
Votes: 0
Watchers: 1
Operations

If you were logged in you would be able to see more operations.
IDEA: Feedback

Find Usage on constructor finds wrong usages

Created: 28 Jan 08 18:14   Updated: 29 Jan 08 15:26
Component/s: Refactoring

Build: 7,656
Severity: High


 Description  « Hide
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.



 All   Comments   Work Log   Change History      Sort Order:
Thomas Singer - 29 Jan 08 15:26
Happens also in build 7670.