Grammar police
git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@765677 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
62a4114ace
commit
0b44b69b29
|
@ -36,7 +36,7 @@ import java.io.IOException;
|
|||
|
||||
/**
|
||||
* A watcher for {@link EofSensorInputStream EofSensorInputStream}.
|
||||
* Each stream will notify it's watcher at most once.
|
||||
* Each stream will notify its watcher at most once.
|
||||
*
|
||||
*
|
||||
*
|
||||
|
|
|
@ -187,7 +187,7 @@ public interface ManagedClientConnection extends
|
|||
* Marks this connection as being in a reusable communication state.
|
||||
* The checkpoints for reuseable communication states (in the absence
|
||||
* of pipelining) are before sending a request and after receiving
|
||||
* the response in it's entirety.
|
||||
* the response in its entirety.
|
||||
* The connection will automatically clear the checkpoint when
|
||||
* used for communication. A call to this method indicates that
|
||||
* the next checkpoint has been reached.
|
||||
|
@ -204,7 +204,7 @@ public interface ManagedClientConnection extends
|
|||
/**
|
||||
* Marks this connection as not being in a reusable state.
|
||||
* This can be used immediately before releasing this connection
|
||||
* to prevent it's reuse. Reasons for preventing reuse include
|
||||
* to prevent its reuse. Reasons for preventing reuse include
|
||||
* error conditions and the evaluation of a
|
||||
* {@link org.apache.http.ConnectionReuseStrategy reuse strategy}.
|
||||
* <br/>
|
||||
|
|
|
@ -51,7 +51,7 @@ import org.apache.http.conn.OperatedClientConnection;
|
|||
* The pool entry stores the underlying connection and tracks the
|
||||
* {@link HttpRoute route} established.
|
||||
* The adapter delegates methods for establishing the route to
|
||||
* it's pool entry.
|
||||
* its pool entry.
|
||||
* <br/>
|
||||
* If the managed connections is released or revoked, the adapter
|
||||
* gets disconnected, but the pool entry still contains the
|
||||
|
|
|
@ -220,7 +220,7 @@ public class TestHttpRoute extends TestCase {
|
|||
routes.add(routettt);
|
||||
assertEquals("some flagged routes are equal", 8, routes.size());
|
||||
|
||||
// we can't test hashCode in general due to it's dependency
|
||||
// we can't test hashCode in general due to its dependency
|
||||
// on InetAddress and HttpHost, but we can check for the flags
|
||||
Set<Integer> routecodes = new HashSet<Integer>();
|
||||
routecodes.add(Integer.valueOf(routefff.hashCode()));
|
||||
|
|
|
@ -579,7 +579,7 @@ public class TestTSCCMWithServer extends ServerTestBase {
|
|||
conn.markReusable();
|
||||
mgr.releaseConnection(conn, -1, null);
|
||||
|
||||
// We now have a manager with an open connection in it's pool.
|
||||
// We now have a manager with an open connection in its pool.
|
||||
// We drop all potential hard reference to the manager and check
|
||||
// whether it is GCed. Internal references might prevent that
|
||||
// if set up incorrectly.
|
||||
|
|
Loading…
Reference in New Issue