Hi, I am not sure if this is a bug for printing the source code with the comments.
Original:
public final class test{
// ------------------------------------ //
// test / test test //
// ------------------------------------ //
/**
* test2
*
*/
public interface testInterface {
/**
* test3
*
*/
public void mytest(short a, short b);
}
private static class myInterface implements testInterface {
public void mytest(short a, short b){
}
}
}//end class test
Pretty-printed by Spoon Launcher:
public final class test {
// ------------------------------------ //
public interface testInterface {
// test / test test //
// ------------------------------------ //
/**
* test2
*/
/**
* test3
*/
public void mytest(short a, short b);
}
private static class myInterface implements test.testInterface {
public void mytest(short a, short b) {
}
}
}
So the problem is:
- the test comment is printed inside of the interface class instead of being outside
- the comment that marks the end of the class is gone
Hi, I am not sure if this is a bug for printing the source code with the comments.
Original:
Pretty-printed by Spoon Launcher:
So the problem is: