Fixed package names after the move from HttpCore

git-svn-id: https://svn.apache.org/repos/asf/jakarta/httpcomponents/trunk/http-client@358377 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Oleg Kalnichevski 2005-12-21 20:53:31 +00:00
parent 0c1449688b
commit bed4d15b93
6 changed files with 10 additions and 7 deletions

View File

@ -27,7 +27,7 @@
*
*/
package org.apache.http.impl;
package org.apache.httpclient.impl;
import java.io.FilterInputStream;
import java.io.IOException;
@ -37,7 +37,7 @@ import java.io.InputStream;
* Closes an underlying stream as soon as the end of the stream is reached, and
* notifies a client when it has done so.
*
* @author Ortwin Glück
* @author Ortwin Gl<EFBFBD>ck
* @author Eric Johnson
* @author <a href="mailto:mbowler@GargoyleSoftware.com">Mike Bowler</a>
*

View File

@ -27,12 +27,14 @@
*
*/
package org.apache.http.impl;
package org.apache.httpclient.impl;
import java.io.IOException;
import org.apache.http.HttpConnection;
import org.apache.http.HttpResponse;
import org.apache.http.impl.ConnectionReuseStrategy;
import org.apache.http.impl.DefaultConnectionReuseStrategy;
/**
* <p>

View File

@ -27,7 +27,7 @@
*
*/
package org.apache.http.impl;
package org.apache.httpclient.impl;
/**
* When a response stream has been consumed, various parts of the HttpClient

View File

@ -27,7 +27,7 @@
*
*/
package org.apache.http.impl.io;
package org.apache.httpclient.impl.io;
import java.io.IOException;
import java.net.InetAddress;

View File

@ -26,7 +26,7 @@
*
*/
package org.apache.http.impl;
package org.apache.httpclient.impl;
import java.io.ByteArrayInputStream;
import java.io.IOException;

View File

@ -26,7 +26,7 @@
*
*/
package org.apache.http.impl;
package org.apache.httpclient.impl;
import java.io.ByteArrayInputStream;
@ -37,6 +37,7 @@ import org.apache.http.HttpMutableResponse;
import org.apache.http.HttpVersion;
import org.apache.http.StatusLine;
import org.apache.http.entity.BasicHttpEntity;
import org.apache.http.impl.DefaultHttpParams;
import org.apache.http.message.BasicHttpResponse;
import org.apache.http.mockup.HttpConnectionMockup;