Browse Source

Use the non-deprecated form to store properties tmove warning.

PR:
Obtained from:
Submitted by:
Reviewed by:


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272212 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 23 years ago
parent
commit
cd31576162
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      proposal/myrmidon/src/todo/org/apache/tools/todo/taskdefs/junit/JUnitTask.java

+ 1
- 1
proposal/myrmidon/src/todo/org/apache/tools/todo/taskdefs/junit/JUnitTask.java View File

@@ -606,7 +606,7 @@ public class JUnitTask extends AbstractTask
try try
{ {
final FileOutputStream outstream = new FileOutputStream( propsFile ); final FileOutputStream outstream = new FileOutputStream( propsFile );
props.save( outstream, "Ant JUnitTask generated properties file" );
props.store( outstream, "Ant JUnitTask generated properties file" );
outstream.close(); outstream.close();
} }
catch( IOException ioe ) catch( IOException ioe )


Loading…
Cancel
Save