Fix calculation of project size.
[jSite.git] / src / de / todesbaum / util / io / LineInputStream.java
index 48500bb..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
@@ -26,10 +25,10 @@ import java.io.InputStream;
 
 /**
  * @author David Roden <droden@gmail.com>
- * @version $Id: LineInputStream.java 429 2006-03-29 18:04:48Z bombe $
+ * @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();
        }
-       
+
 }