mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-01-29 09:35:39 -05:00
Some cleanup
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
using FeedCenter.Data;
|
||||
using FeedCenter.Options;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
namespace FeedCenter
|
||||
@@ -18,11 +17,7 @@ namespace FeedCenter
|
||||
return Database.Entities;
|
||||
}
|
||||
|
||||
public static void CloseDataStore(object dataStore)
|
||||
{
|
||||
}
|
||||
|
||||
public static string GetSettingValue(object dataStore, string name, Version version)
|
||||
public static string GetSettingValue(object dataStore, string name, Version _)
|
||||
{
|
||||
var entities = (FeedCenterEntities) dataStore;
|
||||
|
||||
@@ -31,7 +26,7 @@ namespace FeedCenter
|
||||
return setting?.Value;
|
||||
}
|
||||
|
||||
public static void SetSettingValue(object dataStore, string name, Version version, string value)
|
||||
public static void SetSettingValue(object dataStore, string name, Version _, string value)
|
||||
{
|
||||
var entities = (FeedCenterEntities) dataStore;
|
||||
|
||||
@@ -57,11 +52,5 @@ namespace FeedCenter
|
||||
setting.Value = value;
|
||||
});
|
||||
}
|
||||
|
||||
public static List<Version> GetVersionList(object dataStore) => null;
|
||||
|
||||
public static void DeleteSettingsForVersion(object dataStore, Version version)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user