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

Modified Files:
        Url.java 
Log Message:
removed some superflous toString's


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.41
retrieving revision 1.42
diff -u -b -r1.41 -r1.42
--- Url.java    11 Apr 2008 12:09:16 -0000      1.41
+++ Url.java    18 Apr 2008 13:47:58 -0000      1.42
@@ -35,7 +35,7 @@
  * <p>
  * The creation of the URL is delegated to the MMBase framework.
  * </p>
- * @version $Id: Url.java,v 1.41 2008/04/11 12:09:16 michiel Exp $;
+ * @version $Id: Url.java,v 1.42 2008/04/18 13:47:58 michiel Exp $;
  * @since MMBase-1.9
  */
 public class Url implements Comparable, CharSequence, Casting.Unwrappable {
@@ -166,9 +166,9 @@
             result = framework.getInternalUrl(page, params, 
frameworkParameters).toString();
         } else {
             if (process) {
-                result = framework.getProcessUrl(page, params, 
frameworkParameters, writeamp).toString();
+                result = framework.getProcessUrl(page, params, 
frameworkParameters, writeamp);
             } else {
-                result = framework.getUrl(page, params, frameworkParameters, 
writeamp).toString();
+                result = framework.getUrl(page, params, frameworkParameters, 
writeamp);
             }
             if (log.isDebugEnabled()) {
                 log.debug("Created normal url link to page: " + page + " " + 
params + " fw: " + frameworkParameters + " -> " + result + " fw");
@@ -234,6 +234,7 @@
         return true;
     }
 
+
     public String get() {
         if (string != null) return string;
         try {
_______________________________________________
Cvs mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/cvs

Reply via email to