[java-completion] IDEA-212637 String.toUpperCase/toLowerCase: suggest using Locale parameter in code completion

MethodMergingMinimalTail is updated, as now additional completion option is available

GitOrigin-RevId: 290bdaf0e7aea3c2b676de052e118b7d08d0c525
This commit is contained in:
Tagir Valeev
2020-09-16 07:58:23 +00:00
committed by intellij-monorepo-bot
parent 53b27e84fe
commit 5a3156abc4
5 changed files with 112 additions and 4 deletions
@@ -1,7 +1,7 @@
class Foo {
{
foo("someTestAttachment", "".getBytes(<caret>))
foo("someTestAttachment", "".startsWith(<caret>))
}
void foo(String s, byte[] z) {}
void foo(String s, boolean z) {}
}