You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by James Strachan <ja...@yahoo.co.uk> on 2002/11/27 09:34:51 UTC

Re: [PATCH] [jelly] typo in org.apache.commons.jelly.JellyContext#JellyContext(JellyContext)

[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: 'commons-dev@jakarta.apache.org'
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:
<ma...@jakarta.apache.org>
For additional commands, e-mail: mailto:commons-dev-help@jakarta.apache.org

__________________________________________________
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:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>