Changed dependsOn() argument to String to force coercion to string.

This will probably break FESI, but is required by Rhino (e.g. for NativeDate).
This commit is contained in:
hns 2003-06-25 15:19:52 +00:00
parent 9a05228c4c
commit 1a9f3a1e21

View file

@ -372,7 +372,7 @@ public class ResponseBean implements Serializable {
* *
* @param what ... * @param what ...
*/ */
public void dependsOn(Object what) { public void dependsOn(String what) {
res.dependsOn(what); res.dependsOn(what);
} }