Community
Participate
Working Groups
Build Identifier: 20110615-0604 The change method signature refactoring introduce a compilation error while adding a parameter to a method. Reproducible: Always Steps to Reproduce: 1. Create the classes public class A { protected long k() { return 0; } } public class B extends A { private long k(long l) { return 2; } } 2. Apply the Change Method Signature to add a parameter to k() public class A { protected long k(long l) { return 0; } } public class B extends A { private long k(long l) { return 2; } } 3. The resulting code does not compile
*** This bug has been marked as a duplicate of bug 58616 ***