Skip to content

Commit c233ee3

Browse files
Removed type parameter as a Type is passed in.
1 parent 6c17bf8 commit c233ee3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Open.Serialization/IDeserializeObjectAsync.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ namespace Open.Serialization
77
{
88
public interface IDeserializeObjectAsync
99
{
10-
ValueTask<object?> DeserializeAsync<T>(Stream stream, Type type, CancellationToken cancellationToken = default);
10+
ValueTask<object?> DeserializeAsync(Stream stream, Type type, CancellationToken cancellationToken = default);
1111
}
1212
}

0 commit comments

Comments
 (0)