blob: 32c0eda91c7cc8749699ba734f85337b6152a600 [file] [log] [blame]
package com.siyeh.igfixes.performance.to_array_call_with_zero_length_array_argument;
import java.util.List;
class IntroduceVariable {
static List<String> someFunc()
{
return null;
}
public static void main(String... args)
{
List<String> strings = someFunc();
String[] foo = strings.toArray(new String[strings.size()]);
}
}