~ubuntu-branches/ubuntu/natty/tomcat6/natty-proposed

« back to all changes in this revision

Viewing changes to java/javax/servlet/jsp/JspContext.java

  • Committer: Bazaar Package Importer
  • Author(s): Thierry Carrez
  • Date: 2010-05-21 13:51:15 UTC
  • mfrom: (2.2.12 sid)
  • Revision ID: james.westby@ubuntu.com-20100521135115-qfwnf24lzvi3644v
Tags: 6.0.26-2
* debian/tomcat6.{postinst,prerm}: Respect TOMCAT6_USER and TOMCAT6_GROUP
  as defined in /etc/default/tomcat6 when setting directory permissions and
  authbind configuration (Closes: #581018, LP: #557300)
* debian/tomcat6.postinst: Use group "tomcat6" instead of "adm" for
  permissions in /var/lib/tomcat6, so that group "adm" doesn't get write
  permissions over /var/lib/tomcat6/webapps (LP: #569118)

Show diffs side-by-side

added added

removed removed

Lines of Context:
225
225
     * @deprecated As of JSP 2.1, replaced by
226
226
     *             JspApplicationContext.getExpressionFactory()
227
227
     */
228
 
    @Deprecated
 
228
    @SuppressWarnings("dep-ann") // TCK signature test fails with annotation
229
229
    public abstract ExpressionEvaluator getExpressionEvaluator();
230
230
    
231
231
    
243
243
     *             which can be obtained by
244
244
     *             jspContext.getELContext().getELResolver()
245
245
     */
246
 
    @Deprecated
 
246
    @SuppressWarnings("dep-ann") // TCK signature test fails with annotation
247
247
    public abstract VariableResolver getVariableResolver();
248
248
    
249
249
    /**