Changed accessiblity of DownloadChapter(string[] imageUrls, string saveArchiveFilePath) to protected so only inherited classes can call.
This commit is contained in:
parent
e8f25ca9d0
commit
db5470769c
@ -18,7 +18,7 @@ public abstract class Connector
|
|||||||
protected abstract void DownloadImage(string url, string savePath);
|
protected abstract void DownloadImage(string url, string savePath);
|
||||||
public abstract void DownloadCover(Publication publication);
|
public abstract void DownloadCover(Publication publication);
|
||||||
|
|
||||||
internal void DownloadChapter(string[] imageUrls, string saveArchiveFilePath)
|
protected void DownloadChapter(string[] imageUrls, string saveArchiveFilePath)
|
||||||
{
|
{
|
||||||
string tempFolder = Path.GetTempFileName();
|
string tempFolder = Path.GetTempFileName();
|
||||||
File.Delete(tempFolder);
|
File.Delete(tempFolder);
|
||||||
|
Loading…
Reference in New Issue
Block a user