blob: 50b2e938cc6bca81482efb010312004c0acd8d6b [file] [log] [blame]
package com.siyeh.igtest.internationalization;
import java.io.IOException;
import java.util.Date;
public class DateToStringInspection
{
public DateToStringInspection()
{
}
public void foo() throws IOException
{
final Date date = new Date();
date.toString();
}
}