mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
ambiguous method call: prefer non raw types (IDEA-100314)
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
class Intellij {
|
||||
|
||||
public static <T> T getProperty(final String str, final Class<T> cls) {
|
||||
return null;
|
||||
}
|
||||
|
||||
public static <T> T getProperty(final String str, final T defaultValue) {
|
||||
return null;
|
||||
}
|
||||
|
||||
String[] ids = Intellij.getProperty(" ", String[].class);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user