mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 06:05:50 +07:00
9 lines
216 B
Java
9 lines
216 B
Java
// "Replace with 'StandardCharsets.UTF_8'" "true"
|
|
import java.nio.charset.Charset;
|
|
import java.nio.charset.StandardCharsets;
|
|
|
|
class CharsetForName {
|
|
void test() {
|
|
Charset charset = StandardCharsets.UTF_8;
|
|
}
|
|
} |