/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/inventory.py

  • Committer: John Arbash Meinel
  • Date: 2006-07-28 19:43:43 UTC
  • mto: (1946.2.6 reduce-knit-churn)
  • mto: This revision was merged to the branch mainline in revision 1897.
  • Revision ID: john@arbash-meinel.com-20060728194343-bc6756cae79807f9
Clean up some unnecessary mutter() calls

Show diffs side-by-side

added added

removed removed

Lines of Context:
310
310
        """
311
311
        fullpath = pathjoin(dest, dp)
312
312
        self._put_on_disk(fullpath, tree)
313
 
        mutter("  export {%s} kind %s to %s", self.file_id,
314
 
                self.kind, fullpath)
 
313
        # mutter("  export {%s} kind %s to %s", self.file_id,
 
314
        #         self.kind, fullpath)
315
315
 
316
316
    def _put_on_disk(self, fullpath, tree):
317
317
        """Put this entry onto disk at fullpath, from tree tree."""
408
408
        This means that all its fields are populated, that it has its
409
409
        text stored in the text store or weave.
410
410
        """
411
 
        mutter('new parents of %s are %r', path, previous_entries)
 
411
        # mutter('new parents of %s are %r', path, previous_entries)
412
412
        self._read_tree_state(path, work_tree)
413
413
        # TODO: Where should we determine whether to reuse a
414
414
        # previous revision id or create a new revision? 20060606
416
416
            # cannot be unchanged unless there is only one parent file rev.
417
417
            parent_ie = previous_entries.values()[0]
418
418
            if self._unchanged(parent_ie):
419
 
                mutter("found unchanged entry")
 
419
                # mutter("found unchanged entry")
420
420
                self.revision = parent_ie.revision
421
421
                return "unchanged"
422
422
        return self._snapshot_into_revision(revision, previous_entries, 
433
433
 
434
434
        :returns: String description of the commit (e.g. "merged", "modified"), etc.
435
435
        """
436
 
        mutter('new revision {%s} for {%s}', revision, self.file_id)
 
436
        # mutter('new revision {%s} for {%s}', revision, self.file_id)
437
437
        self.revision = revision
438
438
        self._snapshot_text(previous_entries, work_tree, commit_builder)
439
439