Skip to content

Commit 7d445ec

Browse files
author
slavara
committed
Cleanup
1 parent 3f81e78 commit 7d445ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

QuickNavigate/Forms/OpenRecentProjectsForm.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace QuickNavigate.Forms
1515
public sealed partial class OpenRecentProjectsForm : Form
1616
{
1717
[NotNull] readonly Settings settings;
18-
[NotNull] [ItemNotNull] List<string> recentProjects = ProjectManager.PluginMain.Settings.RecentProjects.Where(File.Exists).ToList();
18+
[NotNull] [ItemNotNull] readonly List<string> recentProjects = ProjectManager.PluginMain.Settings.RecentProjects.Where(File.Exists).ToList();
1919

2020
public OpenRecentProjectsForm([NotNull] Settings settings)
2121
{

0 commit comments

Comments
 (0)