You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by cm...@apache.org on 2010/03/09 03:21:04 UTC

svn commit: r920624 - /subversion/trunk/subversion/libsvn_wc/adm_ops.c

Author: cmpilato
Date: Tue Mar  9 02:21:04 2010
New Revision: 920624

URL: http://svn.apache.org/viewvc?rev=920624&view=rev
Log:
* subversion/libsvn_wc/adm_ops.c
  Remove now-unnecessary call to svn_wc__db_read_info(), since r920522
  removed all the logic that used the status bit it returns.

Suggested by: rhuijben

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

Modified: subversion/trunk/subversion/libsvn_wc/adm_ops.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/adm_ops.c?rev=920624&r1=920623&r2=920624&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/adm_ops.c (original)
+++ subversion/trunk/subversion/libsvn_wc/adm_ops.c Tue Mar  9 02:21:04 2010
@@ -806,7 +806,6 @@ mark_tree_deleted(svn_wc__db_t *db,
 {
   apr_pool_t *iterpool = svn_pool_create(pool);
   const apr_array_header_t *children;
-  svn_wc__db_status_t status;
   int i;
 
   /* Read the entries file for this directory. */
@@ -856,11 +855,6 @@ mark_tree_deleted(svn_wc__db_t *db,
     }
 
   /* Handle directories now, after handling their kiddos. */
-  SVN_ERR(svn_wc__db_read_info(&status, NULL, NULL, NULL, NULL, NULL, NULL,
-                               NULL, NULL, NULL, NULL, NULL, NULL, NULL,
-                               NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
-                               NULL, NULL,
-                               db, dir_abspath, iterpool, iterpool));
   SVN_ERR(svn_wc__db_temp_op_delete(db, dir_abspath, iterpool));
   if (keep_local)
     SVN_ERR(svn_wc__db_temp_set_keep_local(db, dir_abspath, TRUE, iterpool));