Fix up all file headers.
[jSite.git] / src / de / todesbaum / util / io / TempFileInputStream.java
index 0cefd79..43e2047 100644 (file)
@@ -1,6 +1,5 @@
 /*
- * todesbaum-lib - 
- * Copyright (C) 2006 David Roden
+ * jSite - TempFileInputStream.java - Copyright © 2006–2012 David Roden
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -46,8 +45,10 @@ public class TempFileInputStream extends FileInputStream {
         */
        public TempFileInputStream(File file) throws FileNotFoundException {
                super(file);
+               tempFile = file;
        }
 
+       @Override
        public void close() throws IOException {
                super.close();
                tempFile.delete();