From f43a80a92f58ebeb41ac93aaf6bcaf941e76ca06 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Mon, 23 Oct 2017 10:29:10 -0500 Subject: [PATCH] remove unneeded comments --- .../Implementations/TableService.cs | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/FilterLists.Services/Implementations/TableService.cs b/src/FilterLists.Services/Implementations/TableService.cs index 557ef9b63..5a392a627 100644 --- a/src/FilterLists.Services/Implementations/TableService.cs +++ b/src/FilterLists.Services/Implementations/TableService.cs @@ -17,17 +17,11 @@ public TableService(ITableCsvRepository tableCsvRepository) _tableCsvRepository = tableCsvRepository; } - /// - /// update all tables via .CSVs from GitHub - /// public void UpdateTables() { UpdateListTable(); } - /// - /// update table via List.csv from GitHub - /// public void UpdateListTable() { var localCsvFilePath = FetchFile(_tableCsvRepository.GetUrlByName("List"), "List").Result; @@ -38,12 +32,6 @@ public void UpdateListTable() //TODO: delete file when finished } - /// - /// fetch file as string from internet - /// - /// URL of file to fetch - /// name to save file as - /// string of file private static async Task FetchFile(string url, string fileName) { var response = await new HttpClient().GetAsync(url);