inline varargs parameter in calls when method is inlined (IDEADEV-41353)

This commit is contained in:
anna
2010-01-14 14:28:47 +03:00
parent f4e148f0d5
commit eced11faaf
8 changed files with 66 additions and 4 deletions
@@ -4,7 +4,6 @@ public class Varargs {
}
public void foo() {
String[] texts = new String[]{"i", "d", "e", "a"};
String s = join("", texts);
String s = join("", "i", "d", "e", "a");
}
}