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:
Sebastian Bazley 2008-05-04 14:12:13 +00:00
parent f9af4f86e9
commit cb7a2ce8bd
3 changed files with 4 additions and 0 deletions

View File

@ -66,6 +66,7 @@ public HttpDelete(final String uri) throws URISyntaxException {
setURI(new URI(uri));
}
@Override
public String getMethod() {
return METHOD_NAME;
}

View File

@ -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();

View File

@ -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