Return-Path: X-Original-To: apmail-subversion-commits-archive@minotaur.apache.org Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id C4F7D4D82 for ; Mon, 6 Jun 2011 11:22:32 +0000 (UTC) Received: (qmail 3769 invoked by uid 500); 6 Jun 2011 11:22:32 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 3748 invoked by uid 500); 6 Jun 2011 11:22:32 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 3741 invoked by uid 99); 6 Jun 2011 11:22:32 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Jun 2011 11:22:32 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.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; Mon, 06 Jun 2011 11:22:31 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 9890923888E4; Mon, 6 Jun 2011 11:22:11 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1132599 - /subversion/trunk/subversion/libsvn_ra_svn/marshal.c Date: Mon, 06 Jun 2011 11:22:11 -0000 To: commits@subversion.apache.org From: julianfoad@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110606112211.9890923888E4@eris.apache.org> Author: julianfoad Date: Mon Jun 6 11:22:11 2011 New Revision: 1132599 URL: http://svn.apache.org/viewvc?rev=1132599&view=rev Log: * subversion/libsvn_ra_svn/marshal.c (read_string): Remove a redundant comment, following r1130548. Modified: subversion/trunk/subversion/libsvn_ra_svn/marshal.c Modified: subversion/trunk/subversion/libsvn_ra_svn/marshal.c URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_ra_svn/marshal.c?rev=1132599&r1=1132598&r2=1132599&view=diff ============================================================================== --- subversion/trunk/subversion/libsvn_ra_svn/marshal.c (original) +++ subversion/trunk/subversion/libsvn_ra_svn/marshal.c Mon Jun 6 11:22:11 2011 @@ -639,10 +639,7 @@ static svn_error_t *read_string(svn_ra_s } } - /* Return the string properly wrapped into an RA_SVN item. - * Note that the svn_string_t structure is identical to the - * data and len members in stringbuf. - */ + /* Return the string properly wrapped into an RA_SVN item. */ item->kind = SVN_RA_SVN_STRING; item->u.string = svn_stringbuf__morph_into_string(stringbuf);