Return-Path: Delivered-To: apmail-hc-commits-archive@www.apache.org Received: (qmail 88873 invoked from network); 21 Feb 2008 14:42:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 21 Feb 2008 14:42:03 -0000 Received: (qmail 60762 invoked by uid 500); 21 Feb 2008 14:41:55 -0000 Delivered-To: apmail-hc-commits-archive@hc.apache.org Received: (qmail 60726 invoked by uid 500); 21 Feb 2008 14:41:55 -0000 Mailing-List: contact commits-help@hc.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "HttpComponents Project" Delivered-To: mailing list commits@hc.apache.org Received: (qmail 60695 invoked by uid 99); 21 Feb 2008 14:41:55 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Feb 2008 06:41:55 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Feb 2008 14:41:16 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 34A271A9832; Thu, 21 Feb 2008 06:41:37 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r629805 - /httpcomponents/httpcore/branches/limewire_contrib/module-nio/src/main/java/org/apache/http/nio/protocol/AsyncNHttpServiceHandler.java Date: Thu, 21 Feb 2008 14:41:36 -0000 To: commits@hc.apache.org From: olegk@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080221144137.34A271A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: olegk Date: Thu Feb 21 06:41:36 2008 New Revision: 629805 URL: http://svn.apache.org/viewvc?rev=629805&view=rev Log: Removed #printStackTrace() Modified: httpcomponents/httpcore/branches/limewire_contrib/module-nio/src/main/java/org/apache/http/nio/protocol/AsyncNHttpServiceHandler.java Modified: httpcomponents/httpcore/branches/limewire_contrib/module-nio/src/main/java/org/apache/http/nio/protocol/AsyncNHttpServiceHandler.java URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/branches/limewire_contrib/module-nio/src/main/java/org/apache/http/nio/protocol/AsyncNHttpServiceHandler.java?rev=629805&r1=629804&r2=629805&view=diff ============================================================================== --- httpcomponents/httpcore/branches/limewire_contrib/module-nio/src/main/java/org/apache/http/nio/protocol/AsyncNHttpServiceHandler.java (original) +++ httpcomponents/httpcore/branches/limewire_contrib/module-nio/src/main/java/org/apache/http/nio/protocol/AsyncNHttpServiceHandler.java Thu Feb 21 06:41:36 2008 @@ -105,16 +105,20 @@ protected NHttpRequestHandlerResolver handlerResolver; - public AsyncNHttpServiceHandler(final HttpProcessor httpProcessor, + public AsyncNHttpServiceHandler( + final HttpProcessor httpProcessor, final HttpResponseFactory responseFactory, final ConnectionReuseStrategy connStrategy, - final ByteBufferAllocator allocator, final HttpParams params) { + final ByteBufferAllocator allocator, + final HttpParams params) { super(httpProcessor, responseFactory, connStrategy, allocator, params); } - public AsyncNHttpServiceHandler(final HttpProcessor httpProcessor, + public AsyncNHttpServiceHandler( + final HttpProcessor httpProcessor, final HttpResponseFactory responseFactory, - final ConnectionReuseStrategy connStrategy, final HttpParams params) { + final ConnectionReuseStrategy connStrategy, + final HttpParams params) { this(httpProcessor, responseFactory, connStrategy, new HeapByteBufferAllocator(), params); } @@ -123,7 +127,6 @@ this.handlerResolver = handlerResolver; } - public void connected(final NHttpServerConnection conn) { HttpContext context = conn.getContext(); @@ -169,7 +172,6 @@ try { this.expectationVerifier.verify(request, response, context); } catch (HttpException ex) { - ex.printStackTrace(); response = this.responseFactory.newHttpResponse( HttpVersion.HTTP_1_0, HttpStatus.SC_INTERNAL_SERVER_ERROR,