Community
Participate
Working Groups
Steps to reproduce: 1. Invoke "Introduce Parameter" refactoring on "e()" in code below 2. Use default settings 3. There is a compilation error in the resulting file ('Syntax error, insert "Assignment Operator Expression" to complete Expression') interface I { void m(); } public class IntroduceParameterBug1 implements I { public String e() { return null; } public void m() { // Invoke "Introduce Parameter" on "e()" e(); } }
*** This bug has been marked as a duplicate of bug 82149 ***