It's just one of many things Eclipse is yelling at me. Look at IncludeTag.setName(), it's simply doing this.page = name in the setter. Am I wrong to change this?



--
James Mitchell
Software Engineer / Open Source Evangelist
EdgeTech, Inc.
678.910.8017
AIM: jmitchtx

----- Original Message ----- From: "Karr, David" <[EMAIL PROTECTED]>
To: "Struts Developers List" <dev@struts.apache.org>
Sent: Wednesday, February 16, 2005 3:09 PM
Subject: RE: svn commit: r154023 - struts/el/trunk/src/share/org/apache/strutsel/taglib/bean/ELIncludeTag.java



Could you clarify this a bit? You now have two different attributes, "name" and "page", that both will be setting the "page" attribute in the superclass. Is that what you intend to happen?

-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

URL: http://svn.apache.org/viewcvs?view=rev&rev=154023
Log:
change to setPage since setName is depracated
========================================================================
======
---
struts/el/trunk/src/share/org/apache/strutsel/taglib/bean/ELIncludeTag.j
ava (original)
+++ struts/el/trunk/src/share/org/apache/strutsel/taglib/bean/ELIncludeT
+++ ag.java Wed Feb 16 06:48:25 2005
@@ -196,7 +196,7 @@

        if ((string = EvalHelper.evalString("name", getNameExpr(),
                                            this, pageContext)) !=
null)
-            setName(string);
+            setPage(string);

        if ((string = EvalHelper.evalString("page", getPageExpr(),
                                            this, pageContext)) !=
null)



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]




--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to