This commit is contained in:
bao-qian
2016-04-26 22:45:31 +01:00
parent 57c33fe693
commit e96bd5a0e7
6 changed files with 12 additions and 12 deletions

View File

@@ -20,11 +20,11 @@ namespace Wox.Plugin.CMD
private readonly KeyboardSimulator keyboardSimulator = new KeyboardSimulator(new InputSimulator());
private readonly CMDHistory _settings;
private readonly PluginSettingsStorage<CMDHistory> _storage;
private readonly PluginJsonStorage<CMDHistory> _storage;
public CMD()
{
_storage = new PluginSettingsStorage<CMDHistory>();
_storage = new PluginJsonStorage<CMDHistory>();
_settings = _storage.Load();
}