Fix up all file headers.
[jSite.git] / src / de / todesbaum / util / io / LineInputStream.java
index b548afc..4fe0d07 100644 (file)
@@ -1,6 +1,5 @@
 /*
- * todesbaum-lib - 
- * Copyright (C) 2006 David Roden
+ * jSite - LineInputStream.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
@@ -29,7 +28,7 @@ import java.io.InputStream;
  * @version $Id$
  */
 public class LineInputStream extends FilterInputStream {
-       
+
        private boolean skipLinefeed = false;
        private StringBuffer lineBuffer = new StringBuffer();
 
@@ -60,5 +59,5 @@ public class LineInputStream extends FilterInputStream {
                }
                return lineBuffer.toString();
        }
-       
+
 }