mirror of
https://github.com/apache/httpcomponents-client.git
synced 2025-02-27 21:29:12 +00:00
Add missing Override markers
git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@653214 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f9af4f86e9
commit
cb7a2ce8bd
@ -66,6 +66,7 @@ public HttpDelete(final String uri) throws URISyntaxException {
|
||||
setURI(new URI(uri));
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getMethod() {
|
||||
return METHOD_NAME;
|
||||
}
|
||||
|
@ -57,6 +57,7 @@ protected BasicPooledConnAdapter(ThreadSafeClientConnManager tsccm,
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
protected ClientConnectionManager getManager() {
|
||||
// override needed only to make method visible in this package
|
||||
return super.getManager();
|
||||
|
@ -101,6 +101,7 @@ public XConnPoolByRoute(ClientConnectionOperator operator, HttpParams params) {
|
||||
super(operator, params);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected synchronized
|
||||
WaitingThread newWaitingThread(Condition cond,
|
||||
RouteSpecificPool rospl) {
|
||||
@ -125,6 +126,7 @@ public XTSCCM(HttpParams params, SchemeRegistry schreg) {
|
||||
super(params, schreg);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected AbstractConnPool createConnectionPool(HttpParams params) {
|
||||
extendedCPBR = new XConnPoolByRoute(connOperator, params);
|
||||
// no connection GC required
|
||||
|
Loading…
x
Reference in New Issue
Block a user