mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
GitOrigin-RevId: 6f3c8a9f043de6e28fdaf024a950fad9e54446c8
9 lines
256 B
Java
9 lines
256 B
Java
// "Replace with 'cs'" "true"
|
|
import java.io.UnsupportedEncodingException;
|
|
import java.nio.charset.Charset;
|
|
|
|
class Test {
|
|
void test(byte[] bytes, Charset cs) throws UnsupportedEncodingException {
|
|
String string = new String(bytes, 0, 100, cs);
|
|
}
|
|
} |