You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by hw...@apache.org on 2012/05/16 05:07:30 UTC

svn commit: r1338980 - /subversion/branches/ev2-export/subversion/libsvn_client/delete.c

Author: hwright
Date: Wed May 16 03:07:29 2012
New Revision: 1338980

URL: http://svn.apache.org/viewvc?rev=1338980&view=rev
Log:
On the ev2-export branch:
Convert delete to use the repos-private Ev2 provider.

* subversion/libsvn_client/delete.c
  (single_repos_delete): Use svn_ra__get_commit_ev2().

Modified:
    subversion/branches/ev2-export/subversion/libsvn_client/delete.c

Modified: subversion/branches/ev2-export/subversion/libsvn_client/delete.c
URL: http://svn.apache.org/viewvc/subversion/branches/ev2-export/subversion/libsvn_client/delete.c?rev=1338980&r1=1338979&r2=1338980&view=diff
==============================================================================
--- subversion/branches/ev2-export/subversion/libsvn_client/delete.c (original)
+++ subversion/branches/ev2-export/subversion/libsvn_client/delete.c Wed May 16 03:07:29 2012
@@ -175,16 +175,14 @@ single_repos_delete(svn_ra_session_t *ra
                                            log_msg, ctx, pool));
 
   /* Fetch RA commit editor */
-  SVN_ERR(svn_ra__register_editor_shim_callbacks(ra_session,
-                        svn_client__get_shim_callbacks(ctx->wc_ctx,
-                                                       NULL, pool)));
-  SVN_ERR(svn_ra_get_commit_editor4(ra_session, &editor,
-                                    commit_revprops,
-                                    commit_callback,
-                                    commit_baton,
-                                    NULL, TRUE, /* No lock tokens */
-                                    ctx->cancel_func, ctx->cancel_baton,
-                                    pool, pool));
+  SVN_ERR(svn_ra__get_commit_ev2(&editor, ra_session,
+                                 commit_revprops,
+                                 commit_callback,
+                                 commit_baton,
+                                 NULL, TRUE, /* No lock tokens */
+                                 NULL, NULL, NULL, NULL,
+                                 ctx->cancel_func, ctx->cancel_baton,
+                                 pool, pool));
 
   for (i = 0; i < relpaths->nelts; i++)
     {