Removed dependency on helma.scripting.fesi package.
This commit is contained in:
parent
fca259a498
commit
1f3a94c7be
1 changed files with 3 additions and 6 deletions
|
@ -7,7 +7,6 @@ import java.io.*;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
import helma.framework.*;
|
import helma.framework.*;
|
||||||
import helma.scripting.*;
|
import helma.scripting.*;
|
||||||
import helma.scripting.fesi.*;
|
|
||||||
import helma.objectmodel.INode;
|
import helma.objectmodel.INode;
|
||||||
import helma.objectmodel.ConcurrencyException;
|
import helma.objectmodel.ConcurrencyException;
|
||||||
import helma.util.HtmlEncoder;
|
import helma.util.HtmlEncoder;
|
||||||
|
@ -132,11 +131,11 @@ public class Skin {
|
||||||
String handler;
|
String handler;
|
||||||
String name;
|
String name;
|
||||||
String fullname;
|
String fullname;
|
||||||
Hashtable parameters;
|
HashMap parameters;
|
||||||
|
|
||||||
public Macro (String str) {
|
public Macro (String str) {
|
||||||
|
|
||||||
parameters = new Hashtable ();
|
parameters = new HashMap ();
|
||||||
|
|
||||||
int l = str.length ();
|
int l = str.length ();
|
||||||
char cnt[] = new char[l];
|
char cnt[] = new char[l];
|
||||||
|
@ -247,9 +246,7 @@ public class Skin {
|
||||||
Object handlerObject = null;
|
Object handlerObject = null;
|
||||||
|
|
||||||
Object[] arguments = new Object[1];
|
Object[] arguments = new Object[1];
|
||||||
ESRequestData par = new ESRequestData (reval);
|
arguments[0] = parameters;
|
||||||
par.setData (parameters);
|
|
||||||
arguments[0] = par;
|
|
||||||
|
|
||||||
// flag to tell whether we found our invocation target object
|
// flag to tell whether we found our invocation target object
|
||||||
boolean objectFound = true;
|
boolean objectFound = true;
|
||||||
|
|
Loading…
Add table
Reference in a new issue