Skip to content

Commit 3831128

Browse files
committed
Remove GetSettings()
1 parent 0165d14 commit 3831128

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/SIL.Machine/Corpora/ZipParatextProjectFileHandler.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff 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));

0 commit comments

Comments
 (0)