From aed5d84383f0a26091b15fa1c9513b77c52c9e58 Mon Sep 17 00:00:00 2001 From: Simon G Date: Thu, 17 Sep 2020 10:26:55 +0200 Subject: [PATCH] - add fix me --- GBase/FileHandling/FileHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GBase/FileHandling/FileHandler.cs b/GBase/FileHandling/FileHandler.cs index 468fe12..89376b6 100644 --- a/GBase/FileHandling/FileHandler.cs +++ b/GBase/FileHandling/FileHandler.cs @@ -42,7 +42,7 @@ namespace GBase.FileHandling /// True if successful, false if not public async Task Init(string path, CancellationToken cancellationToken) { - DataHandler = _dataHandlerFactory.Create(); + DataHandler = _dataHandlerFactory.Create(); //FixMe: Factory is missing parameters bool success = await DataHandler.Init(false, cancellationToken); return success;