316334 Breaking change on org.eclipse.jetty.client.HttpExchange

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1954 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Michael Gorovoy 2010-06-09 17:48:26 +00:00
parent 64e78003fb
commit 91e134a7cc
2 changed files with 10 additions and 0 deletions

View File

@ -23,6 +23,7 @@ jetty-7.1.4-SNAPSHOT
+ 315995 Incorrect package name in system classes list + 315995 Incorrect package name in system classes list
+ 316119 Fixed maxIdleTime for SocketEndPoint + 316119 Fixed maxIdleTime for SocketEndPoint
+ 316254 Implement @DeclareRoles + 316254 Implement @DeclareRoles
+ 316334 Breaking change on org.eclipse.jetty.client.HttpExchange
+ JETTY-547 Delay close after shutdown until request read + JETTY-547 Delay close after shutdown until request read
+ JETTY-1231 Support context request log handler + JETTY-1231 Support context request log handler

View File

@ -325,6 +325,15 @@ public class HttpExchange
} }
} }
/**
* @deprecated
*/
@Deprecated
public boolean isDone (int status)
{
return isDone();
}
public HttpEventListener getEventListener() public HttpEventListener getEventListener()
{ {
return _listener; return _listener;