Put pushStringBuffer() and popStringBuffer() back in because they are needed
by the template_as_string() functions.
This commit is contained in:
parent
d79cb11bda
commit
c44446023d
1 changed files with 14 additions and 0 deletions
|
@ -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 ();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue