On 28/03/2010, [email protected] <[email protected]> wrote:
> Author: olegk
> Date: Sun Mar 28 09:16:33 2010
> New Revision: 928363
>
> URL: http://svn.apache.org/viewvc?rev=928363&view=rev
> Log:
> Restored full binary compatibility with 4.0
>
> Modified:
>
> httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/protocol/AsyncNHttpServiceHandler.java
>
> Modified:
> httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/protocol/AsyncNHttpServiceHandler.java
> URL:
> http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/protocol/AsyncNHttpServiceHandler.java?rev=928363&r1=928362&r2=928363&view=diff
>
> ==============================================================================
> ---
> httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/protocol/AsyncNHttpServiceHandler.java
> (original)
> +++
> httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/nio/protocol/AsyncNHttpServiceHandler.java
> Sun Mar 28 09:16:33 2010
> @@ -609,18 +609,38 @@ public class AsyncNHttpServiceHandler ex
> return this.ioex;
> }
>
> + @Deprecated
Perhaps add a comment to say why it is deprecated, e.g.
@Deprecated mis-spelt, use getIOException() instead.
> + public IOException getIOExepction() {
> + return this.ioex;
> + }
> +
> public void setIOException(final IOException ex) {
> this.ioex = ex;
> }
>
> + @Deprecated
> + public void setIOExepction(final IOException ex) {
> + this.ioex = ex;
> + }
> +
> public HttpException getHttpException() {
> return this.httpex;
> }
>
> + @Deprecated
> + public HttpException getHttpExepction() {
> + return this.httpex;
> + }
> +
> public void setHttpException(final HttpException ex) {
> this.httpex = ex;
> }
>
> + @Deprecated
> + public void setHttpExepction(final HttpException ex) {
> + this.httpex = ex;
> + }
> +
> public boolean isHandled() {
> return this.handled;
> }
>
>
>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]