Bug 10856

Summary: Error message for x:param incorrect (cut n paste error)
Product: Taglibs Reporter: Ian Tomey <ian.tomey>
Component: Standard TaglibAssignee: Tomcat Developers Mailing List <dev>
Status: RESOLVED FIXED    
Severity: normal    
Priority: P3    
Version: 1.0   
Target Milestone: ---   
Hardware: Other   
OS: other   

Description Ian Tomey 2002-07-16 08:18:48 UTC
in org.apache.taglibs.standard.tag.el.xml.ParamTag

    private void evaluateExpressions() throws JspException {
	name = (String) ExpressionUtil.evalNotNull(
	    "import", "name", name_, String.class, this, pageContext);
	value = ExpressionUtil.evalNotNull(
	    "import", "value", value_, Object.class, this, pageContext);

I believe "import" should be "param". otherwise the error message comes out 
saying the import tag.. which provoked a lot of confused staring at the 
c:import statement :-)
Comment 1 Shawn Bayern 2002-07-16 14:29:02 UTC
Fixed - thanks.