From: Tim P <ti...@us...> - 2008-03-20 11:52:13
|
Update of /cvsroot/webmacro/webmacro/src/org/webmacro/adapter/jsp In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv11396/src/org/webmacro/adapter/jsp Modified Files: TemplateTag.java Log Message: Checkstyle: whitespace Index: TemplateTag.java =================================================================== RCS file: /cvsroot/webmacro/webmacro/src/org/webmacro/adapter/jsp/TemplateTag.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** TemplateTag.java 18 Mar 2008 20:46:01 -0000 1.5 --- TemplateTag.java 20 Mar 2008 11:52:10 -0000 1.6 *************** *** 69,88 **** /** ! * Name used for the JSP context attributes bean when in the WM context */ private static final String ATTRIBUTES_HELPER_NAME = "Attributes"; /** ! * Name used for an optional non-Map context object if supplied */ private static final String CONTEXT_VARIABLE_NAME = "Context"; /** ! * Our shared WebMacro instance */ private WebMacro webmacro; /** ! * Optional JSP-page supplied context variables to use */ private Object context; --- 69,88 ---- /** ! * Name used for the JSP context attributes bean when in the WM context. */ private static final String ATTRIBUTES_HELPER_NAME = "Attributes"; /** ! * Name used for an optional non-Map context object if supplied. */ private static final String CONTEXT_VARIABLE_NAME = "Context"; /** ! * Our shared WebMacro instance. */ private WebMacro webmacro; /** ! * Optional JSP-page supplied context variables to use. */ private Object context; *************** *** 109,113 **** /** ! * Set the src of an external template to use * @param src */ --- 109,113 ---- /** ! * Set the src of an external template to use. * @param src */ *************** *** 244,248 **** { ! templ = new StringTemplate( webmacro.getBroker(), bodyContent.getString(), "WebMacro script in JSP page "+servletName); --- 244,248 ---- { ! templ = new StringTemplate(webmacro.getBroker(), bodyContent.getString(), "WebMacro script in JSP page "+servletName); *************** *** 286,290 **** /** ! * Reset the tag */ public void release() --- 286,290 ---- /** ! * Reset the tag. */ public void release() |