Minor NPE fix.

This commit is contained in:
Xavier Ducrohet
2009-07-22 19:51:10 -07:00
parent 76033864c5
commit ce6f5c964f

View File

@@ -171,9 +171,11 @@ public class Main {
addString(p, line); addString(p, line);
} }
} finally { } finally {
if (br != null) {
br.close(); br.close();
} }
} }
}
/** /**
* Prints some help to stdout. * Prints some help to stdout.