Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
Fix couple of public classes that should be internal
Browse files Browse the repository at this point in the history
  • Loading branch information
caesay committed Jan 1, 2022
1 parent cd3135d commit f45e944
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Squirrel/Lib/BinaryPatchUtility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ private static void WriteInt64(long value, byte[] buf, int offset)
/// <see cref="System.Security.Cryptography.CryptoStream"/> that take ownership of the stream passed to their constructors.
/// </summary>
/// <remarks>See <a href="http://code.logos.com/blog/2009/05/wrappingstream_implementation.html">WrappingStream Implementation</a>.</remarks>
public class WrappingStream : Stream
class WrappingStream : Stream
{
/// <summary>
/// Initializes a new instance of the <see cref="WrappingStream"/> class.
Expand Down Expand Up @@ -862,7 +862,7 @@ private void ThrowIfDisposed()
/// <summary>
/// Indicates whether an object takes ownership of an item.
/// </summary>
public enum Ownership
enum Ownership
{
/// <summary>
/// The object does not own this item.
Expand All @@ -878,7 +878,7 @@ public enum Ownership
/// <summary>
/// Provides helper methods for working with <see cref="Stream"/>.
/// </summary>
public static class StreamUtility
static class StreamUtility
{
/// <summary>
/// Reads exactly <paramref name="count"/> bytes from <paramref name="stream"/>.
Expand Down

0 comments on commit f45e944

Please sign in to comment.