remove useless virtual method

This commit is contained in:
bao-qian
2017-02-06 22:04:52 +00:00
parent 1a08ba0b57
commit d358a9d9fd
2 changed files with 3 additions and 18 deletions

View File

@@ -13,21 +13,6 @@ namespace Wox.Infrastructure.Storage
public string DirectoryPath { get; set; }
public string DirectoryName { get; set; }
public virtual T Load()
{
throw new NotImplementedException();
}
public virtual void Save()
{
throw new NotImplementedException();
}
public virtual void LoadDefault()
{
throw new NotImplementedException();
}
protected Storage()
{
DataType = typeof (T);