blob: ba6c3c9881c12ac96f11f4aa54b6bc2243e5947b [file] [log] [blame]
package com.siyeh.igtest.performance;
import java.io.IOException;
public class StringConstructorInspection
{
public StringConstructorInspection()
{
}
public void foo() throws IOException
{
new String("true");
}
}