Put pushStringBuffer() and popStringBuffer() back in because they are needed

by the template_as_string() functions.
This commit is contained in:
hns 2002-11-28 12:55:21 +00:00
parent d79cb11bda
commit c44446023d

View file

@ -172,5 +172,19 @@ public class ResponseBean implements Serializable {
res.digestDependencies ();
}
/////////////////////////////////////
// The following are legacy methods used by
// Helma templates (*.hsp files) and shouldn't
// be used otherwise.
////////////////////////////////////
public void pushStringBuffer () {
res.pushStringBuffer ();
}
public String popStringBuffer () {
return res.popStringBuffer ();
}
}