Do not locally define pwfile field, which is meant to be an instance variable.
This commit is contained in:
parent
51a564cd60
commit
a0ce604062
1 changed files with 1 additions and 1 deletions
|
@ -201,7 +201,7 @@ public final class Application
|
||||||
CryptFile parentpwfile = null;
|
CryptFile parentpwfile = null;
|
||||||
if (home != null)
|
if (home != null)
|
||||||
parentpwfile = new CryptFile (new File (home, "passwd"), null);
|
parentpwfile = new CryptFile (new File (home, "passwd"), null);
|
||||||
CryptFile pwfile = new CryptFile (new File (appDir, "passwd"), parentpwfile);
|
pwfile = new CryptFile (new File (appDir, "passwd"), parentpwfile);
|
||||||
|
|
||||||
// the properties that map java class names to prototype names
|
// the properties that map java class names to prototype names
|
||||||
File classMappingFile = new File (appDir, "class.properties");
|
File classMappingFile = new File (appDir, "class.properties");
|
||||||
|
|
Loading…
Add table
Reference in a new issue