diff --git a/proposal/myrmidon/src/java/org/apache/aut/nativelib/ExecMetaData.java b/proposal/myrmidon/src/java/org/apache/aut/nativelib/ExecMetaData.java index ee891fd0d..3813710df 100644 --- a/proposal/myrmidon/src/java/org/apache/aut/nativelib/ExecMetaData.java +++ b/proposal/myrmidon/src/java/org/apache/aut/nativelib/ExecMetaData.java @@ -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 isEnvironmentAdditive=true else it specifies * full environment.

*/ - private Properties m_environment; + private final Properties m_environment; /** * Construct the meta data for executable as appropriate.