IDEA-152289 Code completion suggests "return" as the first result in the empty constructor

This commit is contained in:
peter
2016-03-15 19:55:14 +01:00
parent 28b7c2501a
commit d9cbc98a49
5 changed files with 35 additions and 2 deletions
@@ -1,5 +1,5 @@
class Util {
void foo(int reaction, boolean rezet) {
int foo(int reaction, boolean rezet) {
re<caret>
System.out.println();
}
@@ -0,0 +1,6 @@
class Util {
Util(int reaction, boolean rezet) {
re<caret>
}
}
@@ -0,0 +1,6 @@
class Util {
void foo(int reaction, boolean rezet) {
re<caret>
}
}