Skip to main content
summaryrefslogtreecommitdiffstats
blob: 8c326053f36aa4a27620386271c4455113bbf04e (plain) (blame)
1
2
3
4
5
6
7
public static String getLine() {
try {
return textIn.readLine();} catch (IOException e) {
//Should never happen, isReady() tests for errors
doSomething();
}
}

Back to the top