Skip to content

Commit

Permalink
Fix SYSLIB0051 warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
takano32 committed Mar 11, 2024
1 parent 73e7df1 commit ac69489
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions DiscUtils.Core/InvalidFileSystemException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,17 +56,5 @@ public InvalidFileSystemException(string message)
/// <param name="innerException">The inner exception.</param>
public InvalidFileSystemException(string message, Exception innerException)
: base(message, innerException) {}

#if !NETSTANDARD1_5
/// <summary>
/// Initializes a new instance of the InvalidFileSystemException class.
/// </summary>
/// <param name="info">The serialization info.</param>
/// <param name="context">The streaming context.</param>
protected InvalidFileSystemException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
#endif
}
}
}

0 comments on commit ac69489

Please sign in to comment.