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

Key: IDEABKL-3395
Type: Bug Bug
Status: Open Open
Priority: Major Major
Assignee: Eugene Vigdorchik
Reporter: Alain Ravet
Votes: 0
Watchers: 0
Available Workflow Actions

Mark as Stalled
Operations

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

on-the-fly "Change Signature" bug when new param is moved

Created: 12 Jun 05 12:53   Updated: 25 Jul 05 19:01
Component/s: Editor. Intention Actions, Refactoring
Affects Version/s: None
Fix Version/s: None

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown

Build: 3,354


 Description  « Hide

before
------
public void foo ()

{ bar("test", 1); bar("test"); }

public void bar (String param_1) { }}

action:
-------

  • accept the "change signature" quickfix
    => the "change signature" dialog opens
  • move the newly introduced parameter up

after :
-----------
public void foo ()

{ bar("test", 1); <<------ problem: param not moved bar(1, "test"); <<------- OK: param moved }

public void bar (int i, String param_1) { }}



 All   Comments   Work Log   Change History      Sort Order:
There are no comments yet on this issue.