Author: rhuijben
Date: Fri May  6 21:43:03 2011
New Revision: 1100388

URL: http://svn.apache.org/viewvc?rev=1100388&view=rev
Log:
* subversion/libsvn_wc/adm_ops.c
  (process_committed_leaf): Remove two outdated comments:
    The op-depth folding is already implemented in wc_db.c

    And issue #3676 is resolved by this same folding algorithm. (We stopped
    setting the last modified info on all nodes via the folding)

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=1100388&r1=1100387&r2=1100388&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/adm_ops.c (original)
+++ subversion/trunk/subversion/libsvn_wc/adm_ops.c Fri May  6 21:43:03 2011
@@ -218,30 +218,7 @@ process_committed_leaf(svn_wc__db_t *db,
     }
   else
     {
-      /* ### if this is a copy op root, then we should fold the entire
-         ### layer down into BASE. later child mods will apply against
-         ### that new BASE tree. ... this is important to ensure that
-         ### we don't have a copy-child listed within an op-root that no
-         ### longer exists when we commit this specific node.
-         ###
-         ### note that we will need to adjust the caller's process to
-         ### avoid a "commit" on a copied child that has already been
-         ### collapsed by the commit of the op root. BUT: we also need
-         ### to deal with modified children of the copy (text+props)
-         ### which do not appear within the tree structure changes of
-         ### the NODES table. text changes need to shift the checksum
-         ### value, and prop changes need to shift the properties column
-         ### from the ACTUAL_NODE table.
-      */
-
-      /* ### GJS: wtf is the following comment about?  */
-      /* ### Issue #3676: If we can determine that nothing below this node was
-         ### changed via this commit, we should keep new_changed_rev at its old
-         ### value, like how we handle files.
-         ###
-         ### On a clean checkout the last changed rev of the directory is the
-         ### latest revision any of the descendants or the node itself was
-         ### changed. */
+      /* Handle svn:externals changes */
       if (have_base && !have_work
           && prop_mods && had_props
           && old_externals)


Reply via email to