From: Tim P <ti...@us...> - 2008-03-20 11:41:25
|
Update of /cvsroot/webmacro/webmacro/src/org/webmacro/engine In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv7106/src/org/webmacro/engine Modified Files: Block.java Log Message: Checkstyle: line length, javadoc Index: Block.java =================================================================== RCS file: /cvsroot/webmacro/webmacro/src/org/webmacro/engine/Block.java,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** Block.java 19 Mar 2008 23:51:11 -0000 1.25 --- Block.java 20 Mar 2008 11:41:18 -0000 1.26 *************** *** 79,83 **** * Interpret the directive and write it out, using the values in * the supplied context as appropriate. ! * <p> * @exception PropertyException if required data was missing from context * @exception IOException if we could not successfully write to out --- 79,83 ---- * Interpret the directive and write it out, using the values in * the supplied context as appropriate. ! * * @exception PropertyException if required data was missing from context * @exception IOException if we could not successfully write to out *************** *** 317,322 **** /** - * same as out but returns a String - * <p> * @exception PropertyException if required data was missing from context */ --- 317,320 ---- *************** *** 333,337 **** catch (IOException e) { ! context.getBroker().getLog("engine", "parsing and template execution").error("StringWriter threw an IOException!", e); return null; } --- 331,337 ---- catch (IOException e) { ! context.getBroker().getLog("engine", ! "parsing and template execution") ! .error("StringWriter threw an IOException!", e); return null; } |