Ignore:
Timestamp:
2015-07-27T23:14:46+12:00 (9 years ago)
Author:
davidb
Message:

Removal/Tidy-up of debug statements

File:
1 edited

Legend:

Unmodified
Added
Removed
  • other-projects/the-macronizer/trunk/src/java/monogram/plugin/PluginManager.java

    r29855 r30062  
    1919    public File run(PluginConfiguration fileView) throws UnsupportedOperationException, Exception {
    2020        String fileType = fileView.getFileType();
    21         System.out.println("test 2");
    2221        if (fileType.equalsIgnoreCase(".txt")) {
    23             System.out.println("test 3");
    2422            return runPluginTXT(fileView);
    2523        } else if (fileType.equalsIgnoreCase(".docx")) {
     
    3432    private File runPluginTXT(PluginConfiguration fileView) throws Exception {
    3533        Plugin plugin = new PluginTXT(tmpdir);
    36         System.out.println("test 4");
    3734        return plugin.run(fileView);
    3835    }
Note: See TracChangeset for help on using the changeset viewer.