From a0ce6040627162a683131d2b007768b19124324c Mon Sep 17 00:00:00 2001 From: hns Date: Wed, 7 Aug 2002 12:44:42 +0000 Subject: [PATCH] Do not locally define pwfile field, which is meant to be an instance variable. --- src/helma/framework/core/Application.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helma/framework/core/Application.java b/src/helma/framework/core/Application.java index df388f25..120d4766 100644 --- a/src/helma/framework/core/Application.java +++ b/src/helma/framework/core/Application.java @@ -201,7 +201,7 @@ public final class Application CryptFile parentpwfile = null; if (home != 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 File classMappingFile = new File (appDir, "class.properties");