Re: cvs commit: ant/src/main/org/apache/tools/ant/taskdefs Execute.java

2005-01-28 Thread Matt Benson
Oh, yeah, I also removed the 1.1 stuff. Does anybody have access to an OpenVMS system so they can test whether the command file is deleted at the appropriate time? -Matt --- [EMAIL PROTECTED] wrote: > mbenson 2005/01/28 14:23:30 > > Modified: > src/main/org/apache/tools/ant/taskdefs E

Re: cvs commit: ant/src/main/org/apache/tools/ant/taskdefs Execute.java

2004-04-27 Thread Matt Benson
--- Peter Reilly <[EMAIL PROTECTED]> wrote: > Stefan Bodewig wrote: > >Is it save to call getXYZStream on a Process > instance after it has > >terminated or even been destroyed? I've never > tried it and the > >Javadocs don't say anything. > > Stefan: The test cases all pass. I imagine this is

Re: cvs commit: ant/src/main/org/apache/tools/ant/taskdefs Execute.java

2004-04-27 Thread Peter Reilly
Stefan Bodewig wrote: On 27 Apr 2004, <[EMAIL PROTECTED]> wrote: } catch (InterruptedException e) { process.destroy(); +} finally { +try { +process.getInputStream().close(); +process.getOutputStream().close(); +

Re: cvs commit: ant/src/main/org/apache/tools/ant/taskdefs Execute.java

2004-04-27 Thread Stefan Bodewig
On 27 Apr 2004, <[EMAIL PROTECTED]> wrote: >} catch (InterruptedException e) { >process.destroy(); > +} finally { > +try { > +process.getInputStream().close(); > +process.getOutputStream().close(); > +