make Complete Statement guess more often with unclosed overloaded method calls (IDEA-210617)

GitOrigin-RevId: 19121349fed3324788594beb54021ad2fb332e48
This commit is contained in:
peter
2019-05-13 21:03:55 +03:00
committed by intellij-monorepo-bot
parent d3247d67c8
commit 5a338f9995
3 changed files with 8 additions and 12 deletions
@@ -5,5 +5,6 @@ class Main {
}
private String getFileName(Path path) { return path.toString(); }
private String getFileName(Path path, boolean something) { return path.toString(); }
private void foo(String text, int count) {}
}
@@ -5,5 +5,6 @@ class Main {
}
private String getFileName(Path path) { return path.toString(); }
private String getFileName(Path path, boolean something) { return path.toString(); }
private void foo(String text, int count) {}
}