- Timestamp:
- 05/13/16 13:16:05 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/CrossPare/src/de/ugoe/cs/cpdp/training/WekaTraining.java
r86 r99 15 15 package de.ugoe.cs.cpdp.training; 16 16 17 import java.io.PrintStream;18 17 import java.util.logging.Level; 19 20 import org.apache.commons.io.output.NullOutputStream;21 18 22 19 import de.ugoe.cs.util.console.Console; … … 52 49 throw new RuntimeException("classifier of WekaTraining is null"); 53 50 } 54 PrintStream errStr = System.err;55 System.setErr(new PrintStream(new NullOutputStream()));56 51 try { 57 52 if (classifier == null) { … … 77 72 } 78 73 } 79 finally {80 System.setErr(errStr);81 }82 74 } 83 75 }
Note: See TracChangeset
for help on using the changeset viewer.