File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed
Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -8,12 +8,10 @@ namespace SIL.Machine.Corpora
88 public class ZipParatextProjectFileHandler : IParatextProjectFileHandler
99 {
1010 private readonly ZipArchive _archive ;
11- private readonly ParatextProjectSettings _settings ;
1211
1312 public ZipParatextProjectFileHandler ( ZipArchive archive )
1413 {
1514 _archive = archive ;
16- _settings = new ZipParatextProjectSettingsParser ( archive ) . Parse ( ) ;
1715 }
1816
1917 public bool Exists ( string fileName )
@@ -29,11 +27,6 @@ public Stream Open(string fileName)
2927 return entry . Open ( ) ;
3028 }
3129
32- public ParatextProjectSettings GetSettings ( )
33- {
34- return _settings ;
35- }
36-
3730 public string Find ( string extension )
3831 {
3932 ZipArchiveEntry entry = _archive . Entries . FirstOrDefault ( e => e . FullName . EndsWith ( extension ) ) ;
You can’t perform that action at this time.
0 commit comments