diff options
Diffstat (limited to 'src/main/java/tlIItools/NameFileReader.java')
| -rw-r--r-- | src/main/java/tlIItools/NameFileReader.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/tlIItools/NameFileReader.java b/src/main/java/tlIItools/NameFileReader.java index a9646942..a0593c28 100644 --- a/src/main/java/tlIItools/NameFileReader.java +++ b/src/main/java/tlIItools/NameFileReader.java @@ -80,6 +80,8 @@ public class NameFileReader { * * @param r The input source to read from. */ public void readFrom(Reader r) { + // the caller will take care of it + @SuppressWarnings("resource") Scanner scn = new Scanner(r); while (scn.hasNextLine()) { |
