~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/inventory.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-07-29 14:45:56 UTC
  • mfrom: (1711.2.102 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060729144556-473b3c46dfa061a7
(jam) clean up some unnecessary mutter() calls

Show diffs side-by-side

added added

removed removed

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