From: <bri...@us...> - 2003-07-16 06:45:02
|
Update of /cvsroot/webmacro/webmacro/src/org/webmacro/directive In directory sc8-pr-cvs1:/tmp/cvs-serv32064/src/org/webmacro/directive Modified Files: IncludeDirective.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: IncludeDirective.java =================================================================== RCS file: /cvsroot/webmacro/webmacro/src/org/webmacro/directive/IncludeDirective.java,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** IncludeDirective.java 8 Jul 2003 19:48:44 -0000 1.22 --- IncludeDirective.java 16 Jul 2003 06:44:59 -0000 1.23 *************** *** 387,391 **** // so just fall through case TYPE_TEMPLATE: ! out.write(((Template) toInclude).getBytes(out.getEncoding(), context)); break; --- 387,391 ---- // so just fall through case TYPE_TEMPLATE: ! out.write(((Template) toInclude).evaluateAsBytes(out.getEncoding(), context)); break; |