[PATCH] [jelly] typo in org.apache.commons.jelly.JellyContext#JellyContext(JellyContext)Applied, thanks Knut.
James ------- http://radio.weblogs.com/0112098/ ----- Original Message ----- From: Wannheden, Knut To: '[EMAIL PROTECTED]' Sent: Tuesday, November 26, 2002 4:13 PM Subject: [PATCH] [jelly] typo in org.apache.commons.jelly.JellyContext#JellyContext(JellyContext) I suppose the code: public JellyContext(JellyContext parent) { this.parent = parent; this.rootURL = parent.rootURL; this.currentURL = parent.currentURL; this.variables.put("parentScope", parent.variables); this.cacheTags = cacheTags; init(); } should read: public JellyContext(JellyContext parent) { this.parent = parent; this.rootURL = parent.rootURL; this.currentURL = parent.currentURL; this.variables.put("parentScope", parent.variables); this.cacheTags = parent.cacheTags; init(); ^^^^^^^ } Patch attached as patch.txt -- knut -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: mailto:[EMAIL PROTECTED] __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>