Code cleanup (bis)

This commit is contained in:
Geoffroy BONNEVILLE
2020-04-08 16:23:15 +02:00
parent d1047a92ba
commit 1046110dd2
5 changed files with 21 additions and 56 deletions

View File

@@ -1,5 +1,4 @@
using System.Collections.Generic;
using System.Threading.Tasks;
using ModernKeePass.Application.Common.Interfaces;
namespace ModernKeePass.Infrastructure.File
@@ -10,7 +9,7 @@ namespace ModernKeePass.Infrastructure.File
private const char Delimiter = ';';
private const char LineDelimiter = '\n';
public async Task<List<Dictionary<string, string>>> Import(IList<string> fileContents)
public List<Dictionary<string, string>> Import(IList<string> fileContents)
{
var parsedResult = new List<Dictionary<string, string>>();
foreach (var line in fileContents)