[kepler-dev] [Bug 2934] - File Writer prints an extra line of output to System.out

bugzilla-daemon@ecoinformatics.org bugzilla-daemon at ecoinformatics.org
Thu Sep 6 15:17:44 PDT 2007


http://bugzilla.ecoinformatics.org/show_bug.cgi?id=2934


cxh at eecs.berkeley.edu changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED




------- Comment #1 from cxh at eecs.berkeley.edu  2007-09-06 15:17 -------
It looks like kepler/src/org/geon/FileWrite.java has a system.out.println
that is printing the filename to standard out?

    /** Calls LineWriter's postfire and broadcasts the fileName.
     */
    public boolean postfire() throws IllegalActionException {
        boolean ret = super.postfire();
        System.out.println(fileName.asFile().getAbsolutePath());
        url.broadcast(new StringToken(fileName.asFile().getAbsolutePath()));
        return ret;
    }

I've removed the println, so I'm closing this one.


More information about the Kepler-dev mailing list