~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/plugins/weave_fmt/repository.py

Merge repository-format-deprecation branch.

Show diffs side-by-side

added added

removed removed

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