J2K: convert comments inside qualified expression correctly
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
package test;
|
||||
|
||||
public class Test {
|
||||
public static void main(String[] args) {
|
||||
System.out
|
||||
// Comment
|
||||
.println();
|
||||
|
||||
Test
|
||||
// Comment1
|
||||
.foo()
|
||||
// Comment2
|
||||
.indexOf("s")
|
||||
}
|
||||
|
||||
public static String foo() {
|
||||
return "";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user