Tallamraju, Raman wrote:
The actual code snippet is
this:
/**
* @see
javax.servlet.http.HttpServletRequest#getAttribute(java.lang.String)
*/
public Object getAttribute( String name )
{
***Object value = super.getAttribute(name);***(Line 210)
Could this be caused by "name == null"?
If so, I can add a check for
if (name == null)
return null;
and bypass making the super call
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]