blob: dfb570006414b75bef4f1e7f7c2276cbffd653c3 [file] [log] [blame]
package com.siyeh.igtest.bugs;
public class NullArgumentToVariableArgMethodInspection {
public void foo()
{
String.format("%s", null);
String.format("%s", new int[]{1, 2, 3});
}
}