Update of /var/cvs/applications/taglib/src/org/mmbase/bridge/jsp/taglib/pageflow
In directory james.mmbase.org:/tmp/cvs-serv29085

Modified Files:
        Url.java 
Log Message:
annotated with @since and fixed an obvious bug in the copy-consructor


See also: 
http://cvs.mmbase.org/viewcvs/applications/taglib/src/org/mmbase/bridge/jsp/taglib/pageflow


Index: Url.java
===================================================================
RCS file: 
/var/cvs/applications/taglib/src/org/mmbase/bridge/jsp/taglib/pageflow/Url.java,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -b -r1.51 -r1.52
--- Url.java    5 Jan 2009 18:36:53 -0000       1.51
+++ Url.java    12 Jan 2009 14:08:55 -0000      1.52
@@ -35,7 +35,7 @@
  * <p>
  * The creation of the URL is delegated to the MMBase framework.
  * </p>
- * @version $Id: Url.java,v 1.51 2009/01/05 18:36:53 michiel Exp $;
+ * @version $Id: Url.java,v 1.52 2009/01/12 14:08:55 michiel Exp $;
  * @since MMBase-1.9
  */
 public class Url implements Comparable, CharSequence, Casting.Unwrappable {
@@ -101,6 +101,9 @@
         internal = false;
     }
 
+    /**
+     * @since MMBase-1.9.1
+     */
     Url(Url u, boolean encode) {
         this.tag = u.tag;
         this.abs = u.abs;
@@ -108,7 +111,7 @@
         this.escapeAmps = u.escapeAmps;
         this.page = u.page;
         this.params = u.params;
-        this.frameworkParams = u.params;
+        this.frameworkParams = u.frameworkParams;
         this.internal = u.internal;
     }
 
_______________________________________________
Cvs mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/cvs

Reply via email to