From: kkolinko Date: Fri, 1 Jan 2010 19:24:48 +0000 (+0000) Subject: Followup to r895045 X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=da76bffef3b522d5d4ec7718aa6d532940c066fb;p=tomcat7.0 Followup to r895045 Per JavaDoc format, the tags (@deprected, @see etc.) should follow the main description, not precede it. Otherwise the description is swallowed by the tag. git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@895057 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/javax/servlet/jsp/JspContext.java b/java/javax/servlet/jsp/JspContext.java index 96651ce25..fe45ef506 100644 --- a/java/javax/servlet/jsp/JspContext.java +++ b/java/javax/servlet/jsp/JspContext.java @@ -217,14 +217,14 @@ public abstract class JspContext { abstract public JspWriter getOut(); /** - * @deprecated As of JSP 2.1, replaced by - * JspApplicationContext.getExpressionFactory() * Provides programmatic access to the ExpressionEvaluator. * The JSP Container must return a valid instance of an * ExpressionEvaluator that can parse EL expressions. * * @return A valid instance of an ExpressionEvaluator. * @since 2.0 + * @deprecated As of JSP 2.1, replaced by + * JspApplicationContext.getExpressionFactory() */ @Deprecated public abstract ExpressionEvaluator getExpressionEvaluator(); @@ -233,16 +233,16 @@ public abstract class JspContext { public abstract ELContext getELContext(); /** - * @deprecated As of JSP 2.1, - * replaced by javax.el.ELContext.getELResolver() - * which can be obtained by - * jspContext.getELContext().getELResolver() * Returns an instance of a VariableResolver that provides access to the * implicit objects specified in the JSP specification using this JspContext * as the context object. * * @return A valid instance of a VariableResolver. * @since 2.0 + * @deprecated As of JSP 2.1, + * replaced by javax.el.ELContext.getELResolver() + * which can be obtained by + * jspContext.getELContext().getELResolver() */ @Deprecated public abstract VariableResolver getVariableResolver();