blob: 57b3114c667fe78a899e205d72a16b9cdeaf21fb [file] [log] [blame]
package com.siyeh.igtest.performance;
public class ZeroLengthArrayInitializationInspection
{
public static final int[] EMPTY_INT_ARRAY = new int[0];
public void getTabName()
{
final int[] ints = new int[0];
}
}