mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Annotate or remove unused elements.
This commit is contained in:
@@ -31,6 +31,7 @@
|
||||
// ****************************************************************************/
|
||||
|
||||
using System;
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
using System.IO;
|
||||
using Aaru.Helpers;
|
||||
using Microsoft.Win32.SafeHandles;
|
||||
@@ -42,6 +43,7 @@ namespace Aaru.Filters;
|
||||
|
||||
/// <summary>Creates a stream that is a subset of another stream.</summary>
|
||||
/// <inheritdoc />
|
||||
[SuppressMessage("ReSharper", "UnusedMember.Global")]
|
||||
public sealed class OffsetStream : Stream
|
||||
{
|
||||
readonly Stream _baseStream;
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Data;
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using Aaru.CommonTypes.Interfaces;
|
||||
@@ -10,6 +11,7 @@ namespace Aaru.Filters;
|
||||
|
||||
/// <inheritdoc />
|
||||
/// <summary>Implements a stream that joins two or more files (sequentially) as a single stream</summary>
|
||||
[SuppressMessage("ReSharper", "UnusedMember.Global")]
|
||||
public class SplitJoinStream : Stream
|
||||
{
|
||||
readonly Dictionary<long, Stream> _baseStreams;
|
||||
|
||||
Reference in New Issue
Block a user