From: <bri...@us...> - 2003-07-16 06:45:03
|
Update of /cvsroot/webmacro/webmacro/src/org/webmacro/engine In directory sc8-pr-cvs1:/tmp/cvs-serv32064/src/org/webmacro/engine Modified Files: BuildContext.java WMTemplate.java Log Message: More ripping out -- eliminate reference counting of Brokers, pooling of context and fastwriter; streamline Context; eliminate Clock thread hack; eliminate ascii fastwriter hack Index: BuildContext.java =================================================================== RCS file: /cvsroot/webmacro/webmacro/src/org/webmacro/engine/BuildContext.java,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** BuildContext.java 12 Jun 2003 00:47:45 -0000 1.26 --- BuildContext.java 16 Jul 2003 06:45:00 -0000 1.27 *************** *** 49,53 **** public BuildContext (Broker b) { ! super(b, false); } --- 49,53 ---- public BuildContext (Broker b) { ! super(b); } Index: WMTemplate.java =================================================================== RCS file: /cvsroot/webmacro/webmacro/src/org/webmacro/engine/WMTemplate.java,v retrieving revision 1.48 retrieving revision 1.49 diff -C2 -d -r1.48 -r1.49 *** WMTemplate.java 8 Jul 2003 19:48:44 -0000 1.48 --- WMTemplate.java 16 Jul 2003 06:45:00 -0000 1.49 *************** *** 240,244 **** * then this method will return a null string. */ ! public final String getString (Context context) throws PropertyException { try --- 240,244 ---- * then this method will return a null string. */ ! public final String evaluateAsString (Context context) throws PropertyException { try *************** *** 263,267 **** * then this method will return a null string. */ ! public final byte[] getBytes (String encoding, Context context) throws PropertyException { try --- 263,267 ---- * then this method will return a null string. */ ! public final byte[] evaluateAsBytes (String encoding, Context context) throws PropertyException { try |