Skip to content

Commit

Permalink
Merge pull request #64 from takano32/fix-SYSLIB0051-warnings
Browse files Browse the repository at this point in the history
Fix `SYSLIB0051` warnings
  • Loading branch information
takano32 authored Mar 11, 2024
2 parents 73e7df1 + ac69489 commit ce360c3
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 ce360c3

Please sign in to comment.