Close the reader

This commit is contained in:
GunfighterJ 2013-06-30 07:47:33 -05:00
parent f6fd0bdb32
commit d6ef0e1e50
2 changed files with 2 additions and 0 deletions

View file

@ -103,6 +103,7 @@ public class BookInput implements IText
} }
finally finally
{ {
reader.close();
bufferedReader.close(); bufferedReader.close();
} }
} }

View file

@ -84,6 +84,7 @@ public class TextInput implements IText
} }
finally finally
{ {
reader.close();
bufferedReader.close(); bufferedReader.close();
} }
} }