You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pluto-scm@portals.apache.org by at...@apache.org on 2010/05/28 02:36:44 UTC

svn commit: r949052 - in /portals/pluto: branches/pluto-2.0.x/pluto-portal-driver-impl/src/main/java/org/apache/pluto/driver/url/impl/ trunk/pluto-portal-driver-impl/src/main/java/org/apache/pluto/driver/url/impl/

Author: ate
Date: Fri May 28 00:36:44 2010
New Revision: 949052

URL: http://svn.apache.org/viewvc?rev=949052&view=rev
Log:
Fix for PLUTO-583: PortalURLParserImpl: unnecessary "?"

Modified:
    portals/pluto/branches/pluto-2.0.x/pluto-portal-driver-impl/src/main/java/org/apache/pluto/driver/url/impl/PortalURLParserImpl.java
    portals/pluto/trunk/pluto-portal-driver-impl/src/main/java/org/apache/pluto/driver/url/impl/PortalURLParserImpl.java

Modified: portals/pluto/branches/pluto-2.0.x/pluto-portal-driver-impl/src/main/java/org/apache/pluto/driver/url/impl/PortalURLParserImpl.java
URL: http://svn.apache.org/viewvc/portals/pluto/branches/pluto-2.0.x/pluto-portal-driver-impl/src/main/java/org/apache/pluto/driver/url/impl/PortalURLParserImpl.java?rev=949052&r1=949051&r2=949052&view=diff
==============================================================================
--- portals/pluto/branches/pluto-2.0.x/pluto-portal-driver-impl/src/main/java/org/apache/pluto/driver/url/impl/PortalURLParserImpl.java (original)
+++ portals/pluto/branches/pluto-2.0.x/pluto-portal-driver-impl/src/main/java/org/apache/pluto/driver/url/impl/PortalURLParserImpl.java Fri May 28 00:36:44 2010
@@ -356,7 +356,7 @@ public class PortalURLParserImpl impleme
         }
 
         // Construct the string representing the portal URL.
-        return buffer.append(query).toString();
+        return buffer.toString();
     }
 
     public static void encode(StringBuffer url){

Modified: portals/pluto/trunk/pluto-portal-driver-impl/src/main/java/org/apache/pluto/driver/url/impl/PortalURLParserImpl.java
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal-driver-impl/src/main/java/org/apache/pluto/driver/url/impl/PortalURLParserImpl.java?rev=949052&r1=949051&r2=949052&view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal-driver-impl/src/main/java/org/apache/pluto/driver/url/impl/PortalURLParserImpl.java (original)
+++ portals/pluto/trunk/pluto-portal-driver-impl/src/main/java/org/apache/pluto/driver/url/impl/PortalURLParserImpl.java Fri May 28 00:36:44 2010
@@ -356,7 +356,7 @@ public class PortalURLParserImpl impleme
         }
 
         // Construct the string representing the portal URL.
-        return buffer.append(query).toString();
+        return buffer.toString();
     }
 
     public static void encode(StringBuffer url){