Skip to content

Commit 955c719

Browse files
committed
UsedImplicitly fix for new HTTP methods
1 parent c017a61 commit 955c719

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Code/MethodSystem/Methods/HTTPMethods/HTTPGetMethod.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using MEC;
1+
using JetBrains.Annotations;
2+
using MEC;
23
using Newtonsoft.Json;
34
using Newtonsoft.Json.Linq;
45
using SER.Code.ArgumentSystem.Arguments;
@@ -10,6 +11,7 @@
1011

1112
namespace SER.Code.MethodSystem.Methods.HTTPMethods;
1213

14+
[UsedImplicitly]
1315
// ReSharper disable once InconsistentNaming
1416
public class HTTPGetMethod : YieldingReferenceReturningMethod<JObject>, ICanError
1517
{

Code/MethodSystem/Methods/HTTPMethods/ParseJSONMethod.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using Newtonsoft.Json.Linq;
1+
using JetBrains.Annotations;
2+
using Newtonsoft.Json.Linq;
23
using SER.Code.ArgumentSystem.Arguments;
34
using SER.Code.ArgumentSystem.BaseArguments;
45
using SER.Code.Helpers.Exceptions;
@@ -7,6 +8,7 @@
78

89
namespace SER.Code.MethodSystem.Methods.HTTPMethods;
910

11+
[UsedImplicitly]
1012
// ReSharper disable once InconsistentNaming
1113
public class ParseJSONMethod : ReferenceReturningMethod<JObject>, ICanError
1214
{

0 commit comments

Comments
 (0)