diff --git a/GBase/FileHandling/FileHandler.cs b/GBase/FileHandling/FileHandler.cs index 17cba08..88688b7 100644 --- a/GBase/FileHandling/FileHandler.cs +++ b/GBase/FileHandling/FileHandler.cs @@ -7,7 +7,6 @@ using System.IO; using System.Linq; using System.Threading; using System.Threading.Tasks; -using GBase.Api; using GBase.FileHandling.Exceptions; using GBase.Interfaces; using GBase.Interfaces.FileHandling; @@ -61,7 +60,7 @@ namespace GBase.FileHandling return _files; } - public IGBaseFile CreateEntryFile(T entry, IGBaseTable table) where T : IGBaseObject //TODO: Use IGBaseObject as T, add method like GetFilename() + public IGBaseFile CreateEntryFile(T entry, IGBaseTable table) where T : IGBaseObject { string directoryPath = Path.Combine(_path, table.FolderName);