Show More
@@ -1243,7 +1243,7 def makemain(**kwargs): | |||
|
1243 | 1243 | return localrepository |
|
1244 | 1244 | |
|
1245 | 1245 | |
|
1246 | class RevlogFileStorage: | |
|
1246 | class revlogfilestorage: # (repository.ilocalrepositoryfilestorage) | |
|
1247 | 1247 | """File storage when using revlogs.""" |
|
1248 | 1248 | |
|
1249 | 1249 | def file(self, path): |
@@ -1258,15 +1258,6 class RevlogFileStorage: | |||
|
1258 | 1258 | return filelog.filelog(self.svfs, path, try_split=try_split) |
|
1259 | 1259 | |
|
1260 | 1260 | |
|
1261 | revlogfilestorage = interfaceutil.implementer( | |
|
1262 | repository.ilocalrepositoryfilestorage | |
|
1263 | )(RevlogFileStorage) | |
|
1264 | ||
|
1265 | if typing.TYPE_CHECKING: | |
|
1266 | # Help pytype by hiding the interface stuff that confuses it. | |
|
1267 | revlogfilestorage = RevlogFileStorage | |
|
1268 | ||
|
1269 | ||
|
1270 | 1261 | class RevlogNarrowFileStorage: |
|
1271 | 1262 | """File storage when using revlogs and narrow files.""" |
|
1272 | 1263 |
General Comments 0
You need to be logged in to leave comments.
Login now