Menu

#37 Comments at wrong place

open
5
2003-07-24
2003-07-24
Uwe Freese
No

Sourcecode before transformation:

public class testclass {
public testclass() {
// SKIP
}

public void delme() {
// SKIP
}

public void leavemealone() {
// SKIP
}
}

Sourcecode after transformation (doing nothing):

public class testclass {
public testclass() {}
// SKIP

public void delme() {}
// SKIP

public void leavemealone() {}
}
// SKIP

As you can see, the last comment line is too far below.
BTW: Why is the format of the brackets changed?

Discussion


Log in to post a comment.