Skip to content

Commit f0d9dc2

Browse files
remove unneeded nullables
1 parent 80ea354 commit f0d9dc2

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

MethodSystem/Methods/GeneralVariableMethods/PopVariableMethod.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace SER.MethodSystem.Methods.GeneralVariableMethods;
88

99
public class PopVariableMethod : ReturningMethod
1010
{
11-
public override string? Description => "Erases a given variable, returning its value.";
11+
public override string Description => "Erases a given variable, returning its value.";
1212

1313
public override Type[]? ReturnTypes => null;
1414

MethodSystem/Methods/GeneralVariableMethods/VarExistsMethod.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace SER.MethodSystem.Methods.GeneralVariableMethods;
88

99
public class VarExistsMethod : ReturningMethod<BoolValue>
1010
{
11-
public override string? Description => "Returns a bool value indicating if the provided variable exists.";
11+
public override string Description => "Returns a bool value indicating if the provided variable exists.";
1212

1313
public override Argument[] ExpectedArguments { get; } =
1414
[

MethodSystem/Methods/MapMethods/CleanupPickupsMethod.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace SER.MethodSystem.Methods.MapMethods;
77

88
public class CleanupPickupsMethod : SynchronousMethod
99
{
10-
public override string? Description => "Cleans pickups (items) from the map.";
10+
public override string Description => "Cleans pickups (items) from the map.";
1111

1212
public override Argument[] ExpectedArguments { get; } = [];
1313

MethodSystem/Methods/RoundMethods/EndRoundMethod.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace SER.MethodSystem.Methods.RoundMethods;
66

77
public class EndRoundMethod : SynchronousMethod
88
{
9-
public override string? Description => "Ends a round.";
9+
public override string Description => "Ends a round.";
1010

1111
public override Argument[] ExpectedArguments { get; } = [];
1212

MethodSystem/Methods/RoundMethods/StartRoundMethod.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace SER.MethodSystem.Methods.RoundMethods;
66

77
public class StartRoundMethod : SynchronousMethod
88
{
9-
public override string? Description => "Start a round.";
9+
public override string Description => "Start a round.";
1010

1111
public override Argument[] ExpectedArguments { get; } = [];
1212

MethodSystem/Methods/ScriptMethods/TriggerMethod.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace SER.MethodSystem.Methods.ScriptMethods;
99

1010
public class TriggerMethod : SynchronousMethod
1111
{
12-
public override string? Description => "Fires a given trigger, executing scripts which are attached to it.";
12+
public override string Description => "Fires a given trigger, executing scripts which are attached to it.";
1313

1414
public override Argument[] ExpectedArguments { get; } =
1515
[

0 commit comments

Comments
 (0)