~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repofmt/weaverepo.py

(jelmer) Add RepositoryFormat.is_deprecated(). (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
329
329
        result.chk_bytes = None
330
330
        return result
331
331
 
 
332
    def is_deprecated(self):
 
333
        return True
 
334
 
332
335
 
333
336
class RepositoryFormat4(PreSplitOutRepositoryFormat):
334
337
    """Bzr repository format 4.
573
576
        result._transport = repo_transport
574
577
        return result
575
578
 
 
579
    def is_deprecated(self):
 
580
        return True
 
581
 
576
582
 
577
583
class TextVersionedFiles(VersionedFiles):
578
584
    """Just-a-bunch-of-files based VersionedFile stores."""