You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ju...@apache.org on 2015/10/14 12:17:41 UTC

svn commit: r1708577 - /subversion/branches/move-tracking-2/subversion/libsvn_delta/branch.c

Author: julianfoad
Date: Wed Oct 14 10:17:41 2015
New Revision: 1708577

URL: http://svn.apache.org/viewvc?rev=1708577&view=rev
Log:
On the 'move-tracking-2' branch: Remove redundant code following r1708550.

* subversion/libsvn_delta/branch.c
  (BRANCH_IS_CHILD_OF_BRANCH): Remove redundant code.

Modified:
    subversion/branches/move-tracking-2/subversion/libsvn_delta/branch.c

Modified: subversion/branches/move-tracking-2/subversion/libsvn_delta/branch.c
URL: http://svn.apache.org/viewvc/subversion/branches/move-tracking-2/subversion/libsvn_delta/branch.c?rev=1708577&r1=1708576&r2=1708577&view=diff
==============================================================================
--- subversion/branches/move-tracking-2/subversion/libsvn_delta/branch.c (original)
+++ subversion/branches/move-tracking-2/subversion/libsvn_delta/branch.c Wed Oct 14 10:17:41 2015
@@ -48,12 +48,6 @@
   (strcmp(svn_branch_get_id(branch1, scratch_pool), \
           svn_branch_get_id(branch2, scratch_pool)) == 0)
 
-/* Is BRANCH1 an immediate child of BRANCH2? Compare by full branch-ids; don't
-   require identical branch objects. */
-#define BRANCH_IS_CHILD_OF_BRANCH(branch1, branch2, scratch_pool) \
-  ((branch1)->outer_branch && \
-   BRANCH_IS_SAME_BRANCH((branch1)->outer_branch, branch2, scratch_pool))
-
 svn_branch_revision_root_t *
 svn_branch_revision_root_create(svn_branch_repos_t *repos,
                                 svn_revnum_t rev,