Community
Participate
Working Groups
Build ID: I20081211-1908 Steps To Reproduce: 1. Create class package com.avaloq.ui.internal; public class Foo { /** * Creates a new instance of {@link Foo}. */ public Foo() { this.foo("foo"); this.foo(42); this.getClass(); this.hashCode(); } public void foo(final String foo) { } public void foo(final int foo) { } } 2. Call Clean Wizard or On Save Cleanup (option remove this on methods is true) 3. Result is /** * Creates a new instance of {@link Foo}. */ public Foo() { this.foo("foo"); this.foo(42); this.getClass(); hashCode(); } but should be /** * Creates a new instance of {@link Foo}. */ public Foo() { foo("foo"); foo(42); getClass(); hashCode(); }
*** This bug has been marked as a duplicate of bug 240136 ***