diff options
author | aclement <aclement> | 2006-10-17 14:53:42 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-10-17 14:53:42 +0000 |
commit | 1a2eef067f87e9037bd39f20d4c682c642689de8 (patch) | |
tree | 2e80310fb589f5df26cf4160b50f2ceb7389a964 /util/src | |
parent | bc2f36fdbf0e0a8d59e9613b69a3b4639b1dd668 (diff) | |
download | aspectj-1a2eef067f87e9037bd39f20d4c682c642689de8.tar.gz aspectj-1a2eef067f87e9037bd39f20d4c682c642689de8.zip |
close files!
Diffstat (limited to 'util/src')
-rw-r--r-- | util/src/org/aspectj/util/ConfigParser.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/src/org/aspectj/util/ConfigParser.java b/util/src/org/aspectj/util/ConfigParser.java index fbbc457fa..0ea1bb638 100644 --- a/util/src/org/aspectj/util/ConfigParser.java +++ b/util/src/org/aspectj/util/ConfigParser.java @@ -66,6 +66,7 @@ public class ConfigParser { if (line.length() == 0) continue; args.add(new Arg(line, new SourceLocation(configFile, lineNum))); } + stream.close(); } catch (IOException e) { location = new SourceLocation(configFile, lineNum); showError("error reading config file: " + e.toString()); |