Skip to content

Commit 61932c2

Browse files
rename namespace
1 parent 7779ac4 commit 61932c2

File tree

16 files changed

+16
-16
lines changed

16 files changed

+16
-16
lines changed

Community.PowerToys.Run.Plugin.EdgeFavorite.Tests/FavoriteQueryTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using System;
55
using System.Linq;
6-
using Community.PowerToys.Run.Plugin.EdgeFavorite.Helpers;
6+
using Community.PowerToys.Run.Plugin.EdgeFavorite.Services;
77
using Community.PowerToys.Run.Plugin.EdgeFavorite.Tests.Mocks;
88
using Microsoft.VisualStudio.TestTools.UnitTesting;
99

Community.PowerToys.Run.Plugin.EdgeFavorite.Tests/Mocks/DefaultFavoriteProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Copyright (c) Davide Giacometti. All rights reserved.
22
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

4-
using Community.PowerToys.Run.Plugin.EdgeFavorite.Helpers;
54
using Community.PowerToys.Run.Plugin.EdgeFavorite.Models;
5+
using Community.PowerToys.Run.Plugin.EdgeFavorite.Services;
66

77
namespace Community.PowerToys.Run.Plugin.EdgeFavorite.Tests.Mocks
88
{

Community.PowerToys.Run.Plugin.EdgeFavorite.Tests/Mocks/MockEdgeManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Copyright (c) Davide Giacometti. All rights reserved.
22
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

4-
using Community.PowerToys.Run.Plugin.EdgeFavorite.Helpers;
54
using Community.PowerToys.Run.Plugin.EdgeFavorite.Models;
5+
using Community.PowerToys.Run.Plugin.EdgeFavorite.Services;
66

77
namespace Community.PowerToys.Run.Plugin.EdgeFavorite.Tests.Mocks
88
{

Community.PowerToys.Run.Plugin.EdgeFavorite.Tests/Mocks/MultiProfileManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using System.Collections.Generic;
55
using System.Collections.ObjectModel;
6-
using Community.PowerToys.Run.Plugin.EdgeFavorite.Helpers;
6+
using Community.PowerToys.Run.Plugin.EdgeFavorite.Services;
77

88
namespace Community.PowerToys.Run.Plugin.EdgeFavorite.Tests.Mocks
99
{

Community.PowerToys.Run.Plugin.EdgeFavorite.Tests/Mocks/SingleProfileManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using System.Collections.Generic;
55
using System.Collections.ObjectModel;
6-
using Community.PowerToys.Run.Plugin.EdgeFavorite.Helpers;
6+
using Community.PowerToys.Run.Plugin.EdgeFavorite.Services;
77

88
namespace Community.PowerToys.Run.Plugin.EdgeFavorite.Tests.Mocks
99
{

Community.PowerToys.Run.Plugin.EdgeFavorite.Tests/Mocks/WorkFavoriteProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Copyright (c) Davide Giacometti. All rights reserved.
22
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

4-
using Community.PowerToys.Run.Plugin.EdgeFavorite.Helpers;
54
using Community.PowerToys.Run.Plugin.EdgeFavorite.Models;
5+
using Community.PowerToys.Run.Plugin.EdgeFavorite.Services;
66

77
namespace Community.PowerToys.Run.Plugin.EdgeFavorite.Tests.Mocks
88
{

Community.PowerToys.Run.Plugin.EdgeFavorite/Main.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
using System.Collections.ObjectModel;
77
using System.Linq;
88
using System.Windows.Controls;
9-
using Community.PowerToys.Run.Plugin.EdgeFavorite.Helpers;
109
using Community.PowerToys.Run.Plugin.EdgeFavorite.Models;
1110
using Community.PowerToys.Run.Plugin.EdgeFavorite.Properties;
11+
using Community.PowerToys.Run.Plugin.EdgeFavorite.Services;
1212
using ManagedCommon;
1313
using Microsoft.PowerToys.Settings.UI.Library;
1414
using Wox.Infrastructure;

Community.PowerToys.Run.Plugin.EdgeFavorite/Models/FavoriteItem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
using System.Reflection;
99
using System.Windows;
1010
using System.Windows.Input;
11-
using Community.PowerToys.Run.Plugin.EdgeFavorite.Helpers;
1211
using Community.PowerToys.Run.Plugin.EdgeFavorite.Properties;
12+
using Community.PowerToys.Run.Plugin.EdgeFavorite.Services;
1313
using ManagedCommon;
1414
using Wox.Plugin;
1515
using Wox.Plugin.Logger;

Community.PowerToys.Run.Plugin.EdgeFavorite/Helpers/EdgeManager.cs renamed to Community.PowerToys.Run.Plugin.EdgeFavorite/Services/EdgeManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
using Wox.Infrastructure;
1212
using Wox.Plugin.Logger;
1313

14-
namespace Community.PowerToys.Run.Plugin.EdgeFavorite.Helpers
14+
namespace Community.PowerToys.Run.Plugin.EdgeFavorite.Services
1515
{
1616
public class EdgeManager : IEdgeManager
1717
{

Community.PowerToys.Run.Plugin.EdgeFavorite/Helpers/FavoriteProvider.cs renamed to Community.PowerToys.Run.Plugin.EdgeFavorite/Services/FavoriteProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using Community.PowerToys.Run.Plugin.EdgeFavorite.Models;
88
using Wox.Plugin.Logger;
99

10-
namespace Community.PowerToys.Run.Plugin.EdgeFavorite.Helpers
10+
namespace Community.PowerToys.Run.Plugin.EdgeFavorite.Services
1111
{
1212
public sealed class FavoriteProvider : IFavoriteProvider, IDisposable
1313
{

0 commit comments

Comments
 (0)