From ac69489a1016438a68cfee01fb1932cb99a9283d Mon Sep 17 00:00:00 2001 From: TAKANO Mitsuhiro Date: Mon, 11 Mar 2024 21:08:35 +0900 Subject: [PATCH] Fix `SYSLIB0051` warnings --- DiscUtils.Core/InvalidFileSystemException.cs | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/DiscUtils.Core/InvalidFileSystemException.cs b/DiscUtils.Core/InvalidFileSystemException.cs index 601bb2b..0984d25 100644 --- a/DiscUtils.Core/InvalidFileSystemException.cs +++ b/DiscUtils.Core/InvalidFileSystemException.cs @@ -56,17 +56,5 @@ public InvalidFileSystemException(string message) /// The inner exception. public InvalidFileSystemException(string message, Exception innerException) : base(message, innerException) {} - -#if !NETSTANDARD1_5 - /// - /// Initializes a new instance of the InvalidFileSystemException class. - /// - /// The serialization info. - /// The streaming context. - protected InvalidFileSystemException(SerializationInfo info, StreamingContext context) - : base(info, context) - { - } -#endif } -} \ No newline at end of file +}