mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 13:14:18 +07:00
- don't add implicit imports during migration from implicit classes GitOrigin-RevId: 335b3955f7088d67b4a59e922946257ed940ebd1
15 lines
321 B
Java
15 lines
321 B
Java
public class beforeAdjustComments {
|
|
//many comments
|
|
private final String field = "field";
|
|
|
|
//many comments
|
|
public static void main() {
|
|
System.out.println("Hello, world!");
|
|
}
|
|
|
|
//many comments
|
|
public static void main(String[] args) {
|
|
System.out.println("Hello, world!");
|
|
}
|
|
}
|