Browse Source

Make all the variables final

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@271650 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 23 years ago
parent
commit
a04c111270
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      proposal/myrmidon/src/java/org/apache/aut/nativelib/ExecMetaData.java

+ 3
- 3
proposal/myrmidon/src/java/org/apache/aut/nativelib/ExecMetaData.java View File

@@ -24,12 +24,12 @@ public class ExecMetaData
/**
* The working directory in which the applicaiton is launched.
*/
private File m_workingDirectory;
private final File m_workingDirectory;

/**
* The array of strings that make up the command line for the command.
*/
private String[] m_command;
private final String[] m_command;

/**
* The array of strings that make up the native environment for the
@@ -43,7 +43,7 @@ public class ExecMetaData
* process if <code>isEnvironmentAdditive=true</code> else it specifies
* full environment.</p>
*/
private Properties m_environment;
private final Properties m_environment;

/**
* Construct the meta data for executable as appropriate.


Loading…
Cancel
Save