Bug 10856 - Error message for x:param incorrect (cut n paste error)
Summary: Error message for x:param incorrect (cut n paste error)
Status: RESOLVED FIXED
Alias: None
Product: Taglibs
Classification: Unclassified
Component: Standard Taglib (show other bugs)
Version: 1.0
Hardware: Other other
: P3 normal (vote)
Target Milestone: ---
Assignee: Tomcat Developers Mailing List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-07-16 08:18 UTC by Ian Tomey
Modified: 2004-11-16 19:05 UTC (History)
0 users



Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.