Skip to content

Commit e82879b

Browse files
author
SlavaRa
committed
Minor cleanup...
1 parent 7067a77 commit e82879b

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

External/Plugins/ProjectManager/PluginMain.cs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,8 @@ public class PluginMain : IPlugin
7676
private ProjectActions projectActions;
7777
private FlashDevelopActions flashDevelopActions;
7878
private Queue<String> openFileQueue;
79-
private Boolean showProjectClasspaths;
80-
private Boolean showGlobalClasspaths;
8179
private DockContent pluginPanel;
8280
private PluginUI pluginUI;
83-
private Image pluginImage;
8481
private Project activeProject;
8582
private OpenResourceForm projectResources;
8683
private Boolean runOutput;
@@ -102,7 +99,6 @@ public class PluginMain : IPlugin
10299

103100
static string SettingsDir { get { return Path.Combine(PathHelper.DataDir, pluginName); } }
104101
static string SettingsPath { get { return Path.Combine(SettingsDir, "Settings.fdb"); } }
105-
static string FDBuildHints { get { return Path.Combine(SettingsDir, "FDBuildHints.txt"); } }
106102

107103
public void LoadSettings()
108104
{
@@ -170,16 +166,12 @@ public void SaveSettings()
170166
public void Initialize()
171167
{
172168
LoadSettings();
173-
pluginImage = MainForm.FindImage("100");
174169
pluginDesc = TextHelper.GetString("Info.Description");
175170
openFileQueue = new Queue<String>();
176171

177172
Icons.Initialize(MainForm);
178173
EventManager.AddEventHandler(this, eventMask);
179174

180-
showProjectClasspaths = Settings.ShowProjectClasspaths;
181-
showGlobalClasspaths = Settings.ShowGlobalClasspaths;
182-
183175
#region Actions and Event Listeners
184176

185177
menus = new FDMenus(MainForm);

0 commit comments

Comments
 (0)