blob: d60269eb6160dad1b1abdfb9aa20747e4ea04c69 [file] [log] [blame]
public static String getLine()
{
try
{
return textIn.readLine();
}
catch (IOException e)
{
//Should never happen, isReady() tests for errors
doSomething();
}
}