Browse Source

Make RuntimeResult's ctor protected

pull/466/head
FiniteReality 8 years ago
parent
commit
76fd5334fc
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Discord.Net.Commands/Results/RuntimeResult.cs

+ 1
- 1
src/Discord.Net.Commands/Results/RuntimeResult.cs View File

@@ -8,7 +8,7 @@ namespace Discord.Commands
[DebuggerDisplay(@"{DebuggerDisplay,nq}")]
public class RuntimeResult : IResult
{
private RuntimeResult(CommandError? error, string reason)
protected RuntimeResult(CommandError? error, string reason)
{
Error = error;
Reason = reason;


Loading…
Cancel
Save