From 91e134a7cc4b2bb475805380444c11e868413c3e Mon Sep 17 00:00:00 2001 From: Michael Gorovoy Date: Wed, 9 Jun 2010 17:48:26 +0000 Subject: [PATCH] 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 --- VERSION.txt | 1 + .../main/java/org/eclipse/jetty/client/HttpExchange.java | 9 +++++++++ 2 files changed, 10 insertions(+) diff --git a/VERSION.txt b/VERSION.txt index db29a577685..7de59ea96c8 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -23,6 +23,7 @@ jetty-7.1.4-SNAPSHOT + 315995 Incorrect package name in system classes list + 316119 Fixed maxIdleTime for SocketEndPoint + 316254 Implement @DeclareRoles + + 316334 Breaking change on org.eclipse.jetty.client.HttpExchange + JETTY-547 Delay close after shutdown until request read + JETTY-1231 Support context request log handler diff --git a/jetty-client/src/main/java/org/eclipse/jetty/client/HttpExchange.java b/jetty-client/src/main/java/org/eclipse/jetty/client/HttpExchange.java index 2a1039d7d52..e9faf18e09e 100644 --- a/jetty-client/src/main/java/org/eclipse/jetty/client/HttpExchange.java +++ b/jetty-client/src/main/java/org/eclipse/jetty/client/HttpExchange.java @@ -325,6 +325,15 @@ public class HttpExchange } } + /** + * @deprecated + */ + @Deprecated + public boolean isDone (int status) + { + return isDone(); + } + public HttpEventListener getEventListener() { return _listener;