Skip to content

Commit fb1310a

Browse files
committed
Move more things in removal region for CFB
1 parent a818a8a commit fb1310a

File tree

1 file changed

+2
-4
lines changed
  • BinaryObjectScanner/FileType

1 file changed

+2
-4
lines changed

BinaryObjectScanner/FileType/CFB.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ public bool Extract(Stream? stream, string file, string outDir, bool includeDebu
4343
return true;
4444
}
4545

46+
#region REMOVE WHEN SERIALIZATION UPDATED
47+
4648
/// <summary>
4749
/// Extract all files from the CFB to an output directory
4850
/// </summary>
@@ -169,7 +171,6 @@ private static bool ExtractEntry(SabreTools.Serialization.Wrappers.CFB cfb, int
169171
}
170172

171173
/// <remarks>Adapted from LibMSI</remarks>
172-
/// TODO: Remove when serialization updated
173174
private static string? DecodeStreamName(string input)
174175
{
175176
if (input == null)
@@ -219,7 +220,6 @@ private static bool ExtractEntry(SabreTools.Serialization.Wrappers.CFB cfb, int
219220
}
220221

221222
/// <remarks>Adapted from LibMSI</remarks>
222-
/// TODO: Remove when serialization updated
223223
private static int Mime2Utf(int x)
224224
{
225225
if (x < 10)
@@ -233,8 +233,6 @@ private static int Mime2Utf(int x)
233233
return '_';
234234
}
235235

236-
#region REMOVE WHEN SERIALIZATION UPDATED
237-
238236
/// <inheritdoc/>
239237
private static Binary? Deserialize(Stream? data)
240238
{

0 commit comments

Comments
 (0)