code cleanup / jdoc
[fanfix.git] / src / be / nikiroo / fanfix / library / Template.java
index 2dfbacfeb1092780f81686762eb6bf10bb6ee37f..3536d5f12efccf7da066ce4b1d140553c633e631 100644 (file)
@@ -66,15 +66,6 @@ public class Template {
                }
                
                InputStream in = IOUtils.openResource(location, name);
-               
-               InputStream stream;
-               
-               stream = IOUtils.openResource(location, name);
-               System.out.println("SOURCE = (("  + IOUtils.readSmallStream(stream) + "))");
-               stream=new ReplaceInputStream(IOUtils.openResource(location, name), from, to);
-               System.out.println("RESULT = (("  + IOUtils.readSmallStream(stream) + "))");
-               
-               
                return new ReplaceInputStream(in, from, to);
        }