Diff
Not logged in

Differences From:

File tools/cvs2fossil/lib/c2f_frev.tcl part of check-in [436f17a5f0] - Simplified the code for excluding non-trunk revisions a bit, using higher-level methods for some changes. Added missing revision destruction. by aku on 2007-10-21 07:08:28. [view]

To:

File tools/cvs2fossil/lib/c2f_frev.tcl part of check-in [a766b08198] - Reworked object deletion to happen centrally after the file has been processed (drop). Simplified the code restructuring the revision tree as it now doesn't have to think about when and where to remove objects. by aku on 2007-10-23 03:29:36. [view]

@@ -212,11 +212,8 @@
 	return
     }
 
     method removeallbranches {} {
-	foreach branch $mybranches {
-	    $branch destroy
-	}
 	set mybranches       {}
 	set mybranchchildren {}
 	return
     }
@@ -230,9 +227,8 @@
 
     method tags {} { return $mytags }
 
     method removealltags {} {
-	foreach tag $mytags { $tag destroy }
 	set mytags {}
 	return
     }