Return-Path: Delivered-To: apmail-hc-commits-archive@www.apache.org Received: (qmail 60663 invoked from network); 20 Mar 2009 01:51:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 20 Mar 2009 01:51:31 -0000 Received: (qmail 86581 invoked by uid 500); 20 Mar 2009 01:51:31 -0000 Delivered-To: apmail-hc-commits-archive@hc.apache.org Received: (qmail 86553 invoked by uid 500); 20 Mar 2009 01:51:31 -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 86543 invoked by uid 99); 20 Mar 2009 01:51:31 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Mar 2009 18:51:31 -0700 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.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 20 Mar 2009 01:51:30 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 7E66223888A5; Fri, 20 Mar 2009 01:51:10 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r756294 - /httpcomponents/httpclient/trunk/httpclient/src/main/java/org/apache/http/client/methods/HttpDelete.java Date: Fri, 20 Mar 2009 01:51:10 -0000 To: commits@hc.apache.org From: sebb@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090320015110.7E66223888A5@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sebb Date: Fri Mar 20 01:51:09 2009 New Revision: 756294 URL: http://svn.apache.org/viewvc?rev=756294&view=rev Log: As with other methods, not currently thread-safe Modified: httpcomponents/httpclient/trunk/httpclient/src/main/java/org/apache/http/client/methods/HttpDelete.java Modified: httpcomponents/httpclient/trunk/httpclient/src/main/java/org/apache/http/client/methods/HttpDelete.java URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/trunk/httpclient/src/main/java/org/apache/http/client/methods/HttpDelete.java?rev=756294&r1=756293&r2=756294&view=diff ============================================================================== --- httpcomponents/httpclient/trunk/httpclient/src/main/java/org/apache/http/client/methods/HttpDelete.java (original) +++ httpcomponents/httpclient/trunk/httpclient/src/main/java/org/apache/http/client/methods/HttpDelete.java Fri Mar 20 01:51:09 2009 @@ -33,6 +33,8 @@ import java.net.URI; +import net.jcip.annotations.NotThreadSafe; + /** * HTTP DELETE method *

@@ -48,6 +50,7 @@ * * @since 4.0 */ +@NotThreadSafe // HttpRequestBase is @NotThreadSafe public class HttpDelete extends HttpRequestBase { public final static String METHOD_NAME = "DELETE";