Hi, a simple one in comments formatting for eclipse



Hi !

I'm working on eclipse 3.1.0 .
There is something that quite annoying in the code formatter and I
didn't figure out where to change it. When I comment lines with two
slashes "//", I like it when it is in the same column as the code and
not at the beginning, e.g:
class A
{
// my comment
public int a;
}

when I'm copying lines starting with comments, the formatter put the
comment at the beginning of the line, e.g:
class A
{
// my comment
public int a;

// my comment
public int a;

}

how could it be avoided?

Thanks in advance,
Shlomi

.