From b671d30d1d3797e8d2f3adb492bc06ff4a2495de Mon Sep 17 00:00:00 2001 From: Simon G Date: Wed, 11 Nov 2020 16:16:49 +0100 Subject: [PATCH] #25: add TODO: need to init existing files --- GBase/FileHandling/FileHandler.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GBase/FileHandling/FileHandler.cs b/GBase/FileHandling/FileHandler.cs index 0e330ec..4e1d396 100644 --- a/GBase/FileHandling/FileHandler.cs +++ b/GBase/FileHandling/FileHandler.cs @@ -42,8 +42,8 @@ namespace GBase.FileHandling /// True if successful, false if not public async Task Init(string path, CancellationToken cancellationToken) { - _path = path; - return true; //TODO: is there anything that needs to be initialized here? + _path = path; + return true; //TODO: initialize existing files } public IGBaseFile CreateEntryFile(T entry, IGBaseTable table)