mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
Fixes: IDEA-223408 Java ij_java_imports_layout setting in .editorconfig not working properly IDEA-223437 EditorConfig imports order has lower precedence than IntelliJ settings GitOrigin-RevId: 1ad18522a107ea79d1485597f75dfc8cc744081b
19 lines
508 B
Java
19 lines
508 B
Java
package com.company;
|
|
|
|
import static org.junit.platform.commons.util.StringUtils.containsIsoControlCharacter;
|
|
|
|
import com.company.subpackage.AnotherClasss;
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import org.junit.jupiter.api.DisplayName;
|
|
|
|
|
|
public class Main {
|
|
|
|
public static void main(String[] args) {
|
|
AnotherClasss anotherClasss = new AnotherClasss();
|
|
List<String> strings = new ArrayList<>();
|
|
containsIsoControlCharacter(args[0]);
|
|
Class<?> displayName = DisplayName.class;
|
|
}
|
|
} |