Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit c9eeccb

Browse files
Restricting type of ShortCircuitTask to nullable value
1 parent 2fb124e commit c9eeccb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitHub.Api/Installer/ShortCircuitTask.cs

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

44
namespace GitHub.Unity
55
{
6-
class ShortCircuitTask<TResult> : TaskBase<TResult, TResult>
6+
class ShortCircuitTask<TResult> : TaskBase<TResult, TResult> where TResult : class
77
{
88
private readonly Func<TResult> action;
99

0 commit comments

Comments
 (0)