You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by se...@apache.org on 2008/04/30 02:22:43 UTC

svn commit: r652200 - in /httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http: auth/AuthScope.java conn/routing/RouteInfo.java

Author: sebb
Date: Tue Apr 29 17:22:43 2008
New Revision: 652200

URL: http://svn.apache.org/viewvc?rev=652200&view=rev
Log:
Spurious ;

Modified:
    httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/auth/AuthScope.java
    httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/conn/routing/RouteInfo.java

Modified: httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/auth/AuthScope.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/auth/AuthScope.java?rev=652200&r1=652199&r2=652200&view=diff
==============================================================================
--- httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/auth/AuthScope.java (original)
+++ httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/auth/AuthScope.java Tue Apr 29 17:22:43 2008
@@ -107,7 +107,7 @@
         this.host =   (host == null)   ? ANY_HOST: host.toLowerCase();
         this.port =   (port < 0)       ? ANY_PORT: port;
         this.realm =  (realm == null)  ? ANY_REALM: realm;
-        this.scheme = (scheme == null) ? ANY_SCHEME: scheme.toUpperCase();;
+        this.scheme = (scheme == null) ? ANY_SCHEME: scheme.toUpperCase();
     }
     
     /** Creates a new credentials scope for the given 

Modified: httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/conn/routing/RouteInfo.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/conn/routing/RouteInfo.java?rev=652200&r1=652199&r2=652200&view=diff
==============================================================================
--- httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/conn/routing/RouteInfo.java (original)
+++ httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/conn/routing/RouteInfo.java Tue Apr 29 17:22:43 2008
@@ -57,7 +57,7 @@
      * and tunnelling through all proxies to the target.
      * Routes without a proxy cannot be tunnelled.
      */
-    public enum TunnelType { PLAIN, TUNNELLED };
+    public enum TunnelType { PLAIN, TUNNELLED }
 
     /**
      * The layering type of a route.
@@ -72,7 +72,7 @@
      * could be established with the new protocol in the first place.
      * But we don't want to exclude that use case.
      */
-    public enum LayerType  { PLAIN, LAYERED };
+    public enum LayerType  { PLAIN, LAYERED }