Skip to content

Commit f782277

Browse files
committed
Remove useless modifiers
1 parent ab5d5ae commit f782277

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

Flow.Launcher.Infrastructure/QuickSwitch/Interface/IQuickSwitchDialog.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ namespace Flow.Launcher.Infrastructure.QuickSwitch.Interface
1212
/// </remarks>
1313
internal interface IQuickSwitchDialog : IDisposable
1414
{
15-
internal IQuickSwitchDialogWindow DialogWindow { get; }
15+
IQuickSwitchDialogWindow DialogWindow { get; }
1616

17-
internal bool CheckDialogWindow(HWND hwnd);
17+
bool CheckDialogWindow(HWND hwnd);
1818
}
1919
}

Flow.Launcher.Infrastructure/QuickSwitch/Interface/IQuickSwitchDialogWindow.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ namespace Flow.Launcher.Infrastructure.QuickSwitch.Interface
55
{
66
internal interface IQuickSwitchDialogWindow : IDisposable
77
{
8-
internal HWND Handle { get; }
8+
HWND Handle { get; }
99

10-
internal IQuickSwitchDialogWindowTab GetCurrentTab();
10+
IQuickSwitchDialogWindowTab GetCurrentTab();
1111
}
1212
}

Flow.Launcher.Infrastructure/QuickSwitch/Interface/IQuickSwitchDialogWindowTab.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ namespace Flow.Launcher.Infrastructure.QuickSwitch.Interface
55
{
66
internal interface IQuickSwitchDialogWindowTab : IDisposable
77
{
8-
internal HWND Handle { get; }
8+
HWND Handle { get; }
99

10-
internal string GetCurrentFolder();
10+
string GetCurrentFolder();
1111

12-
internal string GetCurrentFile();
12+
string GetCurrentFile();
1313

14-
internal bool JumpFolder(string path, bool auto);
14+
bool JumpFolder(string path, bool auto);
1515

16-
internal bool JumpFile(string path);
16+
bool JumpFile(string path);
1717

18-
internal bool Open();
18+
bool Open();
1919
}
2020
}

Flow.Launcher.Infrastructure/QuickSwitch/Interface/IQuickSwitchExplorer.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ namespace Flow.Launcher.Infrastructure.QuickSwitch.Interface
1212
/// </remarks>
1313
internal interface IQuickSwitchExplorer : IDisposable
1414
{
15-
internal bool CheckExplorerWindow(HWND foreground);
15+
bool CheckExplorerWindow(HWND foreground);
1616

17-
internal void RemoveExplorerWindow();
17+
void RemoveExplorerWindow();
1818

19-
internal string GetExplorerPath();
19+
string GetExplorerPath();
2020
}
2121
}

0 commit comments

Comments
 (0)