rename a class
Brought to you by:
marcusnylander
When I rename a class Foo to Foo2 the vss plugin does immediately check-in and check-out the class!
The source in VSS looks like this:
public class Foo {
private static final Logger LOGGER = Logger.getLogger(Foo2.class);
...
My local class is fine:
public class Foo2 {
private static final Logger LOGGER = Logger.getLogger(Tai2.class);
...
If I check my class into VSS it is fine. But what happens before that? If somebody do a refresh he gets a broken class!
Even worst:
If I do an undo-checkout then I get the broken class above!
This bug already exists with the previous versions (e.g. 1.6.1 on Eclipse 3.2)