~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/merge.py

  • Committer: Vincent Ladeuil
  • Date: 2010-03-09 15:33:25 UTC
  • mto: (5082.2.1 integration2)
  • mto: This revision was merged to the branch mainline in revision 5084.
  • Revision ID: v.ladeuil+lp@free.fr-20100309153325-w16djg6tbkt0905a
Deprecate Merge3Merger.scalar_three_way.

* bzrlib/merge.py:
(Merge3Merger.scalar_three_way): Deprecated, not used in the
current code base, skimming history seem to reveal it hasn't been
used for quite a long time.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1173
1173
        return 'conflict'
1174
1174
 
1175
1175
    @staticmethod
 
1176
    @deprecated_method(deprecated_in((2, 2, 0)))
1176
1177
    def scalar_three_way(this_tree, base_tree, other_tree, file_id, key):
1177
1178
        """Do a three-way test on a scalar.
1178
1179
        Return "this", "other" or "conflict", depending whether a value wins.