Index: /trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/HTMLLogParser.java
===================================================================
--- /trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/HTMLLogParser.java	(revision 1378)
+++ /trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/HTMLLogParser.java	(revision 1379)
@@ -249,6 +249,8 @@
             for (String fileName : parseParams.get("idReplacements")) {
                 Properties props = new Properties();
+                FileInputStream stream = null;
                 try {
-                    props.load(new FileInputStream(new File(fileName)));
+                    stream = new FileInputStream(new File(fileName));
+                    props.load(stream);
                 }
                 catch (FileNotFoundException e) {
@@ -257,4 +259,14 @@
                 catch (IOException e) {
                     throw new SAXException("error reading file " + fileName, e);
+                }
+                finally {
+                    if (stream != null) {
+                        try {
+                            stream.close();
+                        }
+                        catch (IOException e) {
+                            // ignore
+                        }
+                    }
                 }
                 
