2 files changed, 6 insertions, 8 deletions
diff --git a/crypto/crypto.csproj b/crypto/crypto.csproj
index fc38358c3..267b8e010 100644
--- a/crypto/crypto.csproj
+++ b/crypto/crypto.csproj
@@ -2839,11 +2839,6 @@
BuildAction = "Compile"
/>
<File
- RelPath = "src\cms\NullOutputStream.cs"
- SubType = "Code"
- BuildAction = "Compile"
- />
- <File
RelPath = "src\cms\OriginatorId.cs"
SubType = "Code"
BuildAction = "Compile"
@@ -5929,6 +5924,11 @@
BuildAction = "Compile"
/>
<File
+ RelPath = "src\util\io\NullOutputStream.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
RelPath = "src\util\io\PushbackStream.cs"
SubType = "Code"
BuildAction = "Compile"
diff --git a/crypto/src/cms/NullOutputStream.cs b/crypto/src/util/io/NullOutputStream.cs
index ed937bdeb..13877fa13 100644
--- a/crypto/src/cms/NullOutputStream.cs
+++ b/crypto/src/util/io/NullOutputStream.cs
@@ -1,8 +1,6 @@
using System;
-using Org.BouncyCastle.Utilities.IO;
-
-namespace Org.BouncyCastle.Cms
+namespace Org.BouncyCastle.Utilities.IO
{
internal class NullOutputStream
: BaseOutputStream
|