Author: lukaszlenart Date: Thu May 23 13:46:25 2013 New Revision: 1485710 URL: http://svn.apache.org/r1485710 Log: Tweaks docs a bit
Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/CookieInterceptor.java Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/CookieInterceptor.java URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/CookieInterceptor.java?rev=1485710&r1=1485709&r2=1485710&view=diff ============================================================================== --- struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/CookieInterceptor.java (original) +++ struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/CookieInterceptor.java Thu May 23 13:46:25 2013 @@ -86,10 +86,14 @@ import java.util.regex.Pattern; * <!-- START SNIPPET: extending --> * * <ul> - * populateCookieValueIntoStack - this method will decide if this cookie value is qualified to be - * populated into the value stack (hence into the action itself) - * injectIntoCookiesAwareAction - this method will inject selected cookies (as a java.util.Map) into - * action that implements {@link CookiesAware}. + * <li> + * populateCookieValueIntoStack - this method will decide if this cookie value is qualified + * to be populated into the value stack (hence into the action itself) + * </li> + * <li> + * injectIntoCookiesAwareAction - this method will inject selected cookies (as a java.util.Map) + * into action that implements {@link CookiesAware}. + * </li> * </ul> * * <!-- END SNIPPET: extending -->