Skip to content

Commit a7cc4ba

Browse files
committed
Clean up after the previous commit
1 parent 07676f4 commit a7cc4ba

File tree

7 files changed

+5
-278
lines changed

7 files changed

+5
-278
lines changed

NDecrypt/Enumerations.cs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,5 @@
11
namespace NDecrypt
22
{
3-
/// <summary>
4-
/// Functionality to use from the program
5-
/// </summary>
6-
internal enum FeatureFlag
7-
{
8-
NULL,
9-
Decrypt,
10-
Encrypt,
11-
Info,
12-
}
13-
143
/// <summary>
154
/// Type of the detected file
165
/// </summary>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using SabreTools.CommandLine;
66
using SabreTools.CommandLine.Inputs;
77

8-
namespace NDecrypt
8+
namespace NDecrypt.Features
99
{
1010
internal abstract class BaseFeature : Feature
1111
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace NDecrypt
3+
namespace NDecrypt.Features
44
{
55
internal sealed class DecryptFeature : BaseFeature
66
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace NDecrypt
3+
namespace NDecrypt.Features
44
{
55
internal sealed class EncryptFeature : BaseFeature
66
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace NDecrypt
3+
namespace NDecrypt.Features
44
{
55
internal sealed class InfoFeature : BaseFeature
66
{

NDecrypt/Options.cs

Lines changed: 0 additions & 263 deletions
This file was deleted.

NDecrypt/Program.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using System;
22
using System.Collections.Generic;
3+
using NDecrypt.Features;
34
using SabreTools.CommandLine;
45
using SabreTools.CommandLine.Features;
56

0 commit comments

Comments
 (0)