Files
openide/java/java-tests/testData/refactoring/inlineMethod/PreserveLeadingTailingComments.java.after

18 lines
521 B
Plaintext

class Test {
public static void main(String... args) {
// This comment will be lost after inlining this method.
System.out.println("Hello, bug! (1)");
/*
* This comment will be lost after inlining this method.
*/
}
private static void methodToBeInlined1() {
// This comment will be lost after inlining this method.
System.out.println("Hello, bug! (1)");
/*
* This comment will be lost after inlining this method.
*/
}
}