mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-31 02:50:55 +07:00
13 lines
395 B
Java
13 lines
395 B
Java
// "Remove 'unchecked' suppression" "false"
|
|
public class SampleInjected {
|
|
void foo() {
|
|
@SuppressWarnings({"unch<caret>ecked"})
|
|
String java = "import java.util.*;\n" +
|
|
"class A {" +
|
|
" void a(List l) {\n" +
|
|
" List<String> ll = l;\n" +
|
|
" }\n" +
|
|
"}";
|
|
}
|
|
}
|