mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
[Inline Param Name Hints] more ignored common methods
This commit is contained in:
+3
-7
@@ -39,13 +39,9 @@ public class ParameterNameHintsManager {
|
||||
);
|
||||
|
||||
private static final List<String> COMMON_METHODS = ContainerUtil.newArrayList(
|
||||
"get",
|
||||
"set",
|
||||
"indexOf",
|
||||
"contains",
|
||||
"append",
|
||||
"print",
|
||||
"println"
|
||||
"get", "set", "contains", "append",
|
||||
"print", "println",
|
||||
"charAt", "startsWith", "indexOf"
|
||||
);
|
||||
|
||||
@NotNull
|
||||
|
||||
+3
@@ -293,6 +293,9 @@ public class Test {
|
||||
setNewIndex(10);
|
||||
"sss".contains("s");
|
||||
append("sdfsdf");
|
||||
"sfsdf".startWith("s");
|
||||
"sss".charAt(3);
|
||||
|
||||
clearStatus(false);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user