Add missing @Override annotations

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@722041 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2008-12-01 11:39:21 +00:00
parent 6fa08aafaa
commit d06ecc08e7
2 changed files with 3 additions and 0 deletions

View File

@ -124,6 +124,7 @@ public class ClientGZipContentCompression {
super(entity);
}
@Override
public InputStream getContent()
throws IOException, IllegalStateException {
@ -133,6 +134,7 @@ public class ClientGZipContentCompression {
return new GZIPInputStream(wrappedin);
}
@Override
public long getContentLength() {
// length of ungzipped content is not known
return -1;

View File

@ -118,6 +118,7 @@ public class ClientMultiThreadedExecution {
/**
* Executes the GetMethod and prints some status information.
*/
@Override
public void run() {
System.out.println(id + " - about to get something from " + httpget.getURI());