Remove unnecessary method implementation

Should be handled somewhere else
This commit is contained in:
Jeremy Wu 2020-03-06 23:46:30 +11:00
parent 82a24c9952
commit 83df0b3b58
2 changed files with 1 additions and 7 deletions

View file

@ -1,4 +1,4 @@

namespace Wox.Core.Configuration
{
public interface IPortable
@ -9,7 +9,6 @@ namespace Wox.Core.Configuration
void RemoveUninstallerEntry();
void CreateShortcuts();
void CreateUninstallerEntry();
bool IsPortableModeEnabled();
void MoveUserDataFolder(string fromLocation, string toLocation);
void VerifyUserDataAfterMove(string fromLocation, string toLocation);
bool CanUpdatePortability();

View file

@ -79,11 +79,6 @@ namespace Wox.Core.Configuration
}
}
public bool IsPortableModeEnabled()
{
throw new NotImplementedException();
}
public void RemoveShortcuts()
{
var exeName = Constant.Wox + ".exe";