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 {
|
||||
|
||||
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).
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue