From 957424e5ca0bd3f6eca215b4b3e36700b274d41f Mon Sep 17 00:00:00 2001 From: Chris Cameron Date: Mon, 27 Aug 2018 17:32:18 -0400 Subject: [PATCH] fix: Fixing hidden properties --- ICD.Common.Utils/IO/IcdFileStream.cs | 2 -- ICD.Common.Utils/IO/IcdMemoryStream.cs | 2 -- 2 files changed, 4 deletions(-) diff --git a/ICD.Common.Utils/IO/IcdFileStream.cs b/ICD.Common.Utils/IO/IcdFileStream.cs index 524ba3a..84109fb 100644 --- a/ICD.Common.Utils/IO/IcdFileStream.cs +++ b/ICD.Common.Utils/IO/IcdFileStream.cs @@ -8,8 +8,6 @@ namespace ICD.Common.Utils.IO { public sealed class IcdFileStream : IcdStream { - public int Position { get; set; } - public FileStream WrappedFileStream { get { return WrappedStream as FileStream; } } /// diff --git a/ICD.Common.Utils/IO/IcdMemoryStream.cs b/ICD.Common.Utils/IO/IcdMemoryStream.cs index eb8c1a5..f034fc3 100644 --- a/ICD.Common.Utils/IO/IcdMemoryStream.cs +++ b/ICD.Common.Utils/IO/IcdMemoryStream.cs @@ -8,8 +8,6 @@ namespace ICD.Common.Utils.IO { public sealed class IcdMemoryStream : IcdStream { - public int Position { get; set; } - public MemoryStream WrappedMemoryStream { get { return WrappedStream as MemoryStream; } } ///