You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2011/04/05 15:04:56 UTC

svn commit: r1089017 - /subversion/trunk/subversion/libsvn_wc/wc_db.c

Author: rhuijben
Date: Tue Apr  5 13:04:56 2011
New Revision: 1089017

URL: http://svn.apache.org/viewvc?rev=1089017&view=rev
Log:
* subversion/libsvn_wc/wc_db.c
  (is_add_or_root_of_copy): Remove call to SVN_DBG() accidentally left in
     r1089009.

Modified:
    subversion/trunk/subversion/libsvn_wc/wc_db.c

Modified: subversion/trunk/subversion/libsvn_wc/wc_db.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/wc_db.c?rev=1089017&r1=1089016&r2=1089017&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/wc_db.c (original)
+++ subversion/trunk/subversion/libsvn_wc/wc_db.c Tue Apr  5 13:04:56 2011
@@ -4441,7 +4441,6 @@ is_add_or_root_of_copy(svn_boolean_t *ad
   op_depth = svn_sqlite__column_int64(stmt, 0);
 
   *add_or_root_of_copy = (op_depth == relpath_depth(local_relpath));
-  SVN_DBG(("Is root: %s / %d\n", local_relpath, *add_or_root_of_copy));
 
   return svn_error_return(svn_sqlite__reset(stmt));
 }