From e91d06e88eec9888f83c2b63baf93dac21e2fc21 Mon Sep 17 00:00:00 2001 From: hns Date: Tue, 15 Oct 2002 22:07:24 +0000 Subject: [PATCH] removed final keyword which caused compile to fail on OS X (Java 1.3.1) --- src/helma/framework/core/Prototype.java | 14 +++++++------- src/helma/framework/core/Skin.java | 6 +++--- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/helma/framework/core/Prototype.java b/src/helma/framework/core/Prototype.java index 6f28337c..46eade4c 100644 --- a/src/helma/framework/core/Prototype.java +++ b/src/helma/framework/core/Prototype.java @@ -22,14 +22,14 @@ import helma.util.Updatable; public final class Prototype { - final String name; - final Application app; + String name; + Application app; - final HashMap templates; - final HashMap functions; - final HashMap actions; - final HashMap skins; - final HashMap updatables; + HashMap templates; + HashMap functions; + HashMap actions; + HashMap skins; + HashMap updatables; // a map of this prototype's skins as raw strings // used for exposing skins to application (script) code (via app.skinfiles). diff --git a/src/helma/framework/core/Skin.java b/src/helma/framework/core/Skin.java index 690672e4..51119c43 100644 --- a/src/helma/framework/core/Skin.java +++ b/src/helma/framework/core/Skin.java @@ -21,9 +21,9 @@ import java.util.*; public final class Skin { private Macro[] parts; - private final Application app; - private final char[] source; - private final int sourceLength; + private Application app; + private char[] source; + private int sourceLength; private HashSet sandbox;