From c135eff24235121c44da3a22b36e5b8470cf9fd7 Mon Sep 17 00:00:00 2001 From: Richard Webb Date: Sun, 1 Dec 2024 11:15:14 +0000 Subject: [PATCH] Remove the 'cfStream' member from OlePropertiesContainer --- OpenMcdf.Ole/OlePropertiesContainer.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/OpenMcdf.Ole/OlePropertiesContainer.cs b/OpenMcdf.Ole/OlePropertiesContainer.cs index 2a4d17a..72cbfe0 100644 --- a/OpenMcdf.Ole/OlePropertiesContainer.cs +++ b/OpenMcdf.Ole/OlePropertiesContainer.cs @@ -32,7 +32,6 @@ public class OlePropertiesContainer public PropertyContext Context { get; } private readonly List properties = new(); - internal Stream? cfStream; /// /// Create a new instance of with the specified code page and container type. @@ -55,8 +54,6 @@ public OlePropertiesContainer(CfbStream cfStream) { PropertySetStream pStream = new(); - this.cfStream = cfStream; - using BinaryReader reader = new(cfStream, Encoding.Unicode, true); pStream.Read(reader);