0.2 (#896) - Aug 26, 2003

- Class member (method, field, instance/static initializer, class/interface) moving.

0

Problem ( with 0.2) :
moving a folded method unfolds it


(I'm interested in seeing your solution : I had the same problem with
the LineUpAndDownMoverPlugin)

Alain

0

Problem ( with 0.2) :
moving a folded method unfolds it


I will look into it. If I find a solution, I'll implement it.


Timur

0

Bug (with latest release) :

before:
-


String a = "", b="";

public void foo() {]]>
System.out.println("foo");
}



action:
-



after :
-


String a = "",

public void fo() {
System.out.println("foo");
}

b="";




Alain

0

请先登录再写评论。