From d8036c05f2178336264fc4c95e3f97f10c905223 Mon Sep 17 00:00:00 2001 From: HoLLy Date: Tue, 26 Nov 2019 18:34:13 +0100 Subject: [PATCH] Add missing access modifiers --- WasmLib/Utils/BinaryReaderExtensions.cs | 2 +- WasmLib/Utils/IDeserializable.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/WasmLib/Utils/BinaryReaderExtensions.cs b/WasmLib/Utils/BinaryReaderExtensions.cs index 389b01b..24902ed 100644 --- a/WasmLib/Utils/BinaryReaderExtensions.cs +++ b/WasmLib/Utils/BinaryReaderExtensions.cs @@ -7,7 +7,7 @@ using WasmLib.FileFormat.Instructions; namespace WasmLib.Utils { - static class BinaryReaderExtensions + internal static class BinaryReaderExtensions { public static byte ReadVarUint7(this BinaryReader br) { diff --git a/WasmLib/Utils/IDeserializable.cs b/WasmLib/Utils/IDeserializable.cs index b4ae3ea..e893ba8 100644 --- a/WasmLib/Utils/IDeserializable.cs +++ b/WasmLib/Utils/IDeserializable.cs @@ -2,7 +2,7 @@ using System.IO; namespace WasmLib.Utils { - interface IDeserializable + internal interface IDeserializable { void Read(BinaryReader br); }