- remove todo and unused using

master
Simon G 5 years ago
parent 39974b97ba
commit 848733ce5b
  1. 3
      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>(T entry, IGBaseTable table) where T : IGBaseObject //TODO: Use IGBaseObject as T, add method like GetFilename()
public IGBaseFile CreateEntryFile<T>(T entry, IGBaseTable table) where T : IGBaseObject
{
string directoryPath = Path.Combine(_path, table.FolderName);

Loading…
Cancel
Save