mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 23:39:57 +07:00
Fixes IDEA-193573 IDEA doesn't recornize static import on replacing by StandardCharsets
11 lines
300 B
Java
11 lines
300 B
Java
// "Replace with 'StandardCharsets.UTF_8'" "true"
|
|
import static java.nio.charset.StandardCharsets.*;
|
|
|
|
class Test {
|
|
void test(byte[] bytes) throws Exception {
|
|
int UTF_8 = 1;
|
|
String string = new String(bytes, "UTF<caret>-8");
|
|
System.out.println(string);
|
|
string.getBytes(UTF_16);
|
|
}
|
|
} |