Remove unneeded debug log statements.

This commit is contained in:
Bryce Curtis
2010-10-28 16:28:24 -05:00
parent 35b3808701
commit 577284b960
4 changed files with 1 additions and 11 deletions
@@ -36,7 +36,6 @@ public class FileUtils extends Plugin {
* Constructor.
*/
public FileUtils() {
System.out.println("FileUtils()");
}
/**
@@ -156,7 +155,6 @@ public class FileUtils extends Plugin {
* @throws FileNotFoundException, IOException
*/
public String readAsText(String filename, String encoding) throws FileNotFoundException, IOException {
System.out.println("FileUtils.readAsText("+filename+", "+encoding+")");
StringBuilder data = new StringBuilder();
FileInputStream fis = new FileInputStream(filename);
BufferedReader reader = new BufferedReader(new InputStreamReader(fis, encoding), 1024);