Skip to content

Commit 0d6eb7e

Browse files
authored
Remove redundant IDisposable interface
Signed-off-by: Xen <lordofxen@deskasoft.com>
1 parent b25ad65 commit 0d6eb7e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

HashifyNet/Core/ICryptographicStreamableHashFunction.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,9 @@ namespace HashifyNet
3535
/// Common interface to cryptographic hash functions that can be computed over a stream of data without buffering.
3636
/// </summary>
3737
public interface ICryptographicStreamableHashFunction<CName>
38-
: ICryptographicHashFunction<CName>, IStreamableHashFunction<CName>, IDisposable where CName : ICryptographicHashConfig<CName>
38+
: ICryptographicHashFunction<CName>, IStreamableHashFunction<CName> where CName : ICryptographicHashConfig<CName>
3939
{
4040
}
4141

4242
}
43+

0 commit comments

Comments
 (0)