This commit is contained in:
jinyu 2015-12-15 12:09:23 +08:00
parent 91eedeb27b
commit 3ed53ed366
2 changed files with 2 additions and 2 deletions

View File

@ -81,7 +81,7 @@ public class HttpComponent3 extends AbstractHttpClient {
return new TraceMethod(uri.getEscapedURI()); return new TraceMethod(uri.getEscapedURI());
} else { } else {
throw new HttpClientException("unknown request method " throw new HttpClientException("unknown request method "
+ method + "for" + uri); + method + " for " + uri);
} }
httpMethod.setURI(uri); httpMethod.setURI(uri);
} catch (IOException e) { } catch (IOException e) {

View File

@ -62,7 +62,7 @@ public abstract class HttpComponent4 extends AbstractHttpClient {
return new HttpTrace(uri); return new HttpTrace(uri);
} else { } else {
throw new HttpClientException("unknown request method " + method throw new HttpClientException("unknown request method " + method
+ "for" + uri); + " for " + uri);
} }
} }