blob: 76571b9392f61e2fe4b1315174dfa40ee4f2347c [file] [log] [blame]
package com.siyeh.igtest.performance;
import java.io.IOException;
public class SingleCharacterStartsWithInspection
{
public SingleCharacterStartsWithInspection()
{
}
public void foo() throws IOException
{
"foo".startsWith("f");
"foo".startsWith("f", 0);
"foo".endsWith("f");
}
}