removed final keyword which caused compile to fail on OS X (Java 1.3.1)
This commit is contained in:
parent
ff82c38ff6
commit
e91d06e88e
2 changed files with 10 additions and 10 deletions
|
@ -22,14 +22,14 @@ import helma.util.Updatable;
|
||||||
|
|
||||||
public final class Prototype {
|
public final class Prototype {
|
||||||
|
|
||||||
final String name;
|
String name;
|
||||||
final Application app;
|
Application app;
|
||||||
|
|
||||||
final HashMap templates;
|
HashMap templates;
|
||||||
final HashMap functions;
|
HashMap functions;
|
||||||
final HashMap actions;
|
HashMap actions;
|
||||||
final HashMap skins;
|
HashMap skins;
|
||||||
final HashMap updatables;
|
HashMap updatables;
|
||||||
|
|
||||||
// a map of this prototype's skins as raw strings
|
// a map of this prototype's skins as raw strings
|
||||||
// used for exposing skins to application (script) code (via app.skinfiles).
|
// used for exposing skins to application (script) code (via app.skinfiles).
|
||||||
|
|
|
@ -21,9 +21,9 @@ import java.util.*;
|
||||||
public final class Skin {
|
public final class Skin {
|
||||||
|
|
||||||
private Macro[] parts;
|
private Macro[] parts;
|
||||||
private final Application app;
|
private Application app;
|
||||||
private final char[] source;
|
private char[] source;
|
||||||
private final int sourceLength;
|
private int sourceLength;
|
||||||
private HashSet sandbox;
|
private HashSet sandbox;
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue