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