``` java public class Test { public String m() { return "\n"; } } ``` gets converted to ``` java class Test { def m(){ ' ' } } ``` Which is compiling, but quite confusing (and can possibly break given difference in platform end of line encodings)
gets converted to
Which is compiling, but quite confusing (and can possibly break given difference in platform end of line encodings)