Files
openide/java/java-tests/testData/inspection/charsetObjectCanBeUsed/beforeStringUEENestedTry.java
2018-06-14 09:52:46 +07:00

20 lines
485 B
Java

// "Replace with 'StandardCharsets.UTF_16'" "true"
class Test {
void test(byte[] bytes) {
String string = null;
try {
try {
string = new String(bytes, "utf<caret>16");
}
catch (NullPointerException exception) {
System.out.println("ex1");
}
}
catch (java.io.UnsupportedEncodingException exception) {
exception.printStackTrace();
}
if(string.startsWith("Foo")) {
System.out.println("It's a foo!");
}
}
}