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:
parent
6fa08aafaa
commit
d06ecc08e7
|
@ -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;
|
||||
|
|
|
@ -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());
|
||||
|
|
Loading…
Reference in New Issue