blob: c1e01b3fa103c93a6fc36a6575a1bb7c6914777f [file] [log] [blame]
package com.siyeh.igtest.performance;
import java.io.IOException;
public class SubstringZeroInspection
{
public SubstringZeroInspection()
{
}
public void foo() throws IOException
{
String foo = "true".substring(0);
}
}