Skip to content

Commit

Permalink
Убирает неиспользуемые using
Browse files Browse the repository at this point in the history
  • Loading branch information
inyutin-maxim committed Aug 10, 2021
1 parent 2ce40c8 commit e65ab72
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 15 deletions.
4 changes: 0 additions & 4 deletions VkNet.Tests/Categories/Donut/DonutTests.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
using System.Collections.Generic;
using System.Linq;
using NUnit.Framework;
using VkNet.Enums;
using VkNet.Enums.Filters;
using VkNet.Enums.SafetyEnums;
using VkNet.Exception;
using VkNet.Tests.Infrastructure;

Expand Down
2 changes: 0 additions & 2 deletions VkNet.Tests/Categories/Group/GetRequestsTests.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
using NUnit.Framework;
using VkNet.Enums.Filters;
using VkNet.Enums.SafetyEnums;
using VkNet.Model.RequestParams;
using VkNet.Tests.Infrastructure;

namespace VkNet.Tests.Categories.Group
Expand Down
1 change: 0 additions & 1 deletion VkNet.Tests/Models/VkResponseObjectTests.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using System;
using System.Linq;
using FluentAssertions;
using Moq.AutoMock;
using Newtonsoft.Json;
using NUnit.Framework;
using VkNet.Model;
Expand Down
6 changes: 0 additions & 6 deletions VkNet.Tests/Utils/CountByIntervalAwaitableConstraintTests.cs
Original file line number Diff line number Diff line change
@@ -1,14 +1,8 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Moq;
using NUnit.Framework;
using VkNet.Enums;
using VkNet.Model;
using VkNet.Tests.Infrastructure;
using VkNet.Utils;

namespace VkNet.Tests.Utils
Expand Down
3 changes: 1 addition & 2 deletions VkNet.Tests/VkApiTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Moq;
using NUnit.Framework;
using VkNet.Enums;
using VkNet.Enums.Filters;
Expand Down Expand Up @@ -44,7 +43,7 @@ public void AuthorizeAndUpdateTokenAutomatically()

var waiter = new AutoResetEvent(initialState: false);

Api.OnTokenUpdatedAutomatically += (api) =>
Api.OnTokenUpdatedAutomatically += (_) =>
{
waiter.Set();
};
Expand Down

0 comments on commit e65ab72

Please sign in to comment.