From commits-return-48850-archive-asf-public=cust-asf.ponee.io@subversion.apache.org Fri May 4 11:14:52 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 8722F180634 for ; Fri, 4 May 2018 11:14:52 +0200 (CEST) Received: (qmail 23815 invoked by uid 500); 4 May 2018 09:14:51 -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 23805 invoked by uid 99); 4 May 2018 09:14:50 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 04 May 2018 09:14:50 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 4A0DE3A00A1 for ; Fri, 4 May 2018 09:14:50 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1830901 - /subversion/trunk/subversion/libsvn_client/update.c Date: Fri, 04 May 2018 09:14:49 -0000 To: commits@subversion.apache.org From: stsp@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20180504091450.4A0DE3A00A1@svn01-us-west.apache.org> Author: stsp Date: Fri May 4 09:14:49 2018 New Revision: 1830901 URL: http://svn.apache.org/viewvc?rev=1830901&view=rev Log: Follow-up to r1830900: * subversion/libsvn_client/update.c (update_internal): Remove a redundant comment which became the docstring for the new reuse_ra_session() helper function in r1830900. Modified: subversion/trunk/subversion/libsvn_client/update.c Modified: subversion/trunk/subversion/libsvn_client/update.c URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/update.c?rev=1830901&r1=1830900&r2=1830901&view=diff ============================================================================== --- subversion/trunk/subversion/libsvn_client/update.c (original) +++ subversion/trunk/subversion/libsvn_client/update.c Fri May 4 09:14:49 2018 @@ -467,10 +467,6 @@ update_internal(svn_revnum_t *result_rev ctx->notify_func2(ctx->notify_baton2, notify, scratch_pool); } - /* Try to reuse the RA session by reparenting it to the anchor_url. - * This code is probably overly cautious since we only use this - * currently when parents are missing and so all the anchor_urls - * have to be in the same repo. */ SVN_ERR(reuse_ra_session(ra_session_p, &corrected_url, anchor_url, anchor_abspath, ctx, result_pool, scratch_pool)); ra_session = *ra_session_p;