Return-Path: Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: (qmail 97140 invoked from network); 15 Dec 2010 18:13:29 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 15 Dec 2010 18:13:29 -0000 Received: (qmail 70535 invoked by uid 500); 15 Dec 2010 18:13:29 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 70504 invoked by uid 500); 15 Dec 2010 18:13:29 -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 70497 invoked by uid 99); 15 Dec 2010 18:13:29 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 15 Dec 2010 18:13:29 +0000 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; Wed, 15 Dec 2010 18:13:28 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 2F51223888CF; Wed, 15 Dec 2010 18:13:07 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1049659 - /subversion/trunk/subversion/libsvn_wc/upgrade.c Date: Wed, 15 Dec 2010 18:13:07 -0000 To: commits@subversion.apache.org From: julianfoad@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20101215181307.2F51223888CF@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: julianfoad Date: Wed Dec 15 18:13:06 2010 New Revision: 1049659 URL: http://svn.apache.org/viewvc?rev=1049659&view=rev Log: * subversion/libsvn_wc/upgrade.c Remove debug statements. A follow-up to r1049658. Modified: subversion/trunk/subversion/libsvn_wc/upgrade.c Modified: subversion/trunk/subversion/libsvn_wc/upgrade.c URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/upgrade.c?rev=1049659&r1=1049658&r2=1049659&view=diff ============================================================================== --- subversion/trunk/subversion/libsvn_wc/upgrade.c (original) +++ subversion/trunk/subversion/libsvn_wc/upgrade.c Wed Dec 15 18:13:06 2010 @@ -1060,7 +1060,6 @@ migrate_text_bases(const char *dir_abspa svn_boolean_t have_row; svn_sqlite__stmt_t *stmt; - SVN_DBG(("revert-base('%s') = '%s'\n", text_base_basename, name)); SVN_ERR(svn_sqlite__get_statement(&stmt, sdb, STMT_SELECT_NODE_INFO)); SVN_ERR(svn_sqlite__bindf(stmt, "is", wc_id, local_relpath)); @@ -1085,10 +1084,6 @@ migrate_text_bases(const char *dir_abspa SVN_ERR(svn_sqlite__update(NULL, stmt)); } } - else - { - SVN_DBG(("revert-base('%s') = No\n", text_base_basename)); - } } }