| Summary: | [quick fix] Quick fix "Add parameter" ignores overrides | ||
|---|---|---|---|
| Product: | [Eclipse Project] JDT | Reporter: | Aaron Digulla <digulla> |
| Component: | UI | Assignee: | JDT-UI-Inbox <jdt-ui-inbox> |
| Status: | CLOSED DUPLICATE | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | markus.kell.r, Olivier_Thomann |
| Version: | 3.7 | ||
| Target Milestone: | --- | ||
| Hardware: | All | ||
| OS: | All | ||
| Whiteboard: | |||
Moving to JDT/UI *** This bug has been marked as a duplicate of bug 160212 *** |
Take this code: class A { void foo() { bar(); } void bar() {} } class B extends A { void bar() {} } Now change foo: void foo() { bar(1); // add new parameter } Use the quick fix to add "int i" to "bar()" in A. B.bar() should change as well.