File tree Expand file tree Collapse file tree 2 files changed +3
-11
lines changed
Flow.Launcher.Core/ExternalPlugins/Environments
Flow.Launcher.Infrastructure/UserSettings Expand file tree Collapse file tree 2 files changed +3
-11
lines changed Original file line number Diff line number Diff line change 1
- using Flow . Launcher . Infrastructure ;
2
- using Flow . Launcher . Infrastructure . Logger ;
1
+ using Flow . Launcher . Infrastructure . Logger ;
3
2
using Flow . Launcher . Infrastructure . UserSettings ;
4
3
using Flow . Launcher . Plugin ;
5
4
using Flow . Launcher . Plugin . SharedCommands ;
6
5
using System ;
7
6
using System . Collections . Generic ;
8
7
using System . IO ;
9
8
using System . Linq ;
10
- using System . Text . RegularExpressions ;
11
9
using System . Windows . Forms ;
12
10
13
11
namespace Flow . Launcher . Core . ExternalPlugins . Environments
@@ -32,12 +30,6 @@ public abstract class AbstractPluginEnvironment
32
30
33
31
internal PluginsSettings PluginSettings ;
34
32
35
- private const string updatePythonIndicatorFilename = ".updatePythonPath" ;
36
-
37
- private const string updateNodeIndicatorFilename = ".updateNodePath" ;
38
-
39
- private const string appDataRegex = @"app-\d\.\d\.\d" ;
40
-
41
33
internal AbstractPluginEnvironment ( List < PluginMetadata > pluginMetadataList , PluginsSettings pluginSettings )
42
34
{
43
35
PluginMetadataList = pluginMetadataList ;
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ namespace Flow.Launcher.Infrastructure.UserSettings
5
5
{
6
6
public class PluginsSettings : BaseModel
7
7
{
8
- private string pythonExecutablePath ;
8
+ private string pythonExecutablePath = string . Empty ;
9
9
public string PythonExecutablePath {
10
10
get { return pythonExecutablePath ; }
11
11
set
@@ -15,7 +15,7 @@ public string PythonExecutablePath {
15
15
}
16
16
}
17
17
18
- private string nodeExecutablePath ;
18
+ private string nodeExecutablePath = string . Empty ;
19
19
public string NodeExecutablePath
20
20
{
21
21
get { return nodeExecutablePath ; }
You can’t perform that action at this time.
0 commit comments