Skip to content

Commit e31bef7

Browse files
committed
fix formatting + naming
1 parent 7b999c5 commit e31bef7

File tree

9 files changed

+9
-17
lines changed

9 files changed

+9
-17
lines changed

Flow.Launcher.Infrastructure/StringMatcher.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
using Flow.Launcher.Plugin.SharedModel;
1+
using Flow.Launcher.Plugin.SharedModels;
22
using System;
33
using System.Collections.Generic;
4-
using System.ComponentModel;
54
using System.Linq;
6-
using static Flow.Launcher.Infrastructure.StringMatcher;
75

86
namespace Flow.Launcher.Infrastructure
97
{
@@ -242,8 +240,6 @@ private static int CalculateSearchScore(string query, string stringToCompare, in
242240
}
243241
}
244242

245-
246-
247243
public class MatchOption
248244
{
249245
public bool IgnoreCase { get; set; } = true;

Flow.Launcher.Infrastructure/UserSettings/Settings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Drawing;
44
using System.Text.Json.Serialization;
55
using Flow.Launcher.Plugin;
6-
using Flow.Launcher.Plugin.SharedModel;
6+
using Flow.Launcher.Plugin.SharedModels;
77

88
namespace Flow.Launcher.Infrastructure.UserSettings
99
{

Flow.Launcher.Plugin/IPublicAPI.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using Flow.Launcher.Plugin.SharedModel;
1+
using Flow.Launcher.Plugin.SharedModels;
22
using JetBrains.Annotations;
33
using System;
44
using System.Collections.Generic;

Flow.Launcher.Plugin/SharedModel/MatchResult.cs renamed to Flow.Launcher.Plugin/SharedModels/MatchResult.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
1+
using System.Collections.Generic;
42

5-
namespace Flow.Launcher.Plugin.SharedModel
3+
namespace Flow.Launcher.Plugin.SharedModels
64
{
75
public class MatchResult
86
{

Flow.Launcher.Test/FuzzyMatcherTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using NUnit.Framework;
66
using Flow.Launcher.Infrastructure;
77
using Flow.Launcher.Plugin;
8-
using Flow.Launcher.Plugin.SharedModel;
8+
using Flow.Launcher.Plugin.SharedModels;
99

1010
namespace Flow.Launcher.Test
1111
{

Flow.Launcher/PublicAPIInstance.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
using System.Threading.Tasks;
66
using System.Windows;
77
using Squirrel;
8-
using Flow.Launcher.Core;
98
using Flow.Launcher.Core.Plugin;
109
using Flow.Launcher.Core.Resource;
1110
using Flow.Launcher.Helper;
@@ -14,7 +13,7 @@
1413
using Flow.Launcher.Infrastructure.Image;
1514
using Flow.Launcher.Plugin;
1615
using Flow.Launcher.ViewModel;
17-
using Flow.Launcher.Plugin.SharedModel;
16+
using Flow.Launcher.Plugin.SharedModels;
1817
using System.Threading;
1918
using System.IO;
2019
using Flow.Launcher.Infrastructure.Http;

Flow.Launcher/ViewModel/SettingWindowViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
using Flow.Launcher.Infrastructure.Storage;
1818
using Flow.Launcher.Infrastructure.UserSettings;
1919
using Flow.Launcher.Plugin;
20-
using Flow.Launcher.Plugin.SharedModel;
20+
using Flow.Launcher.Plugin.SharedModels;
2121

2222
namespace Flow.Launcher.ViewModel
2323
{

Plugins/Flow.Launcher.Plugin.BrowserBookmark/Commands/Bookmarks.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Collections.Generic;
22
using System.Linq;
33
using Flow.Launcher.Infrastructure;
4-
using Flow.Launcher.Plugin.SharedModel;
4+
using Flow.Launcher.Plugin.SharedModels;
55

66
namespace Flow.Launcher.Plugin.BrowserBookmark.Commands
77
{

Plugins/Flow.Launcher.Plugin.Sys/Main.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
using System.Collections.Generic;
33
using System.Diagnostics;
44
using System.Runtime.InteropServices;
5-
using System.Threading.Tasks;
65
using System.Windows;
76
using System.Windows.Forms;
87
using System.Windows.Interop;

0 commit comments

Comments
 (0)