Skip to content

Commit 1d3e017

Browse files
author
eanolue@sbsc.com
committed
removed unnecessary using statements
1 parent 71a61f5 commit 1d3e017

7 files changed

Lines changed: 6 additions & 23 deletions

File tree

src/Encryption/AesEncryption/BaseAesEncryption.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
using SafeCrypt.Models;
22
using System;
33
using System.IO;
4-
using System.Reflection;
54
using System.Security.Cryptography;
6-
using System.Text;
75

86
namespace SafeCrypt.AesEncryption
97
{

src/Encryption/AesEncryption/Models/ByteEncryptionParameters.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.ComponentModel.DataAnnotations;
4-
using System.Text;
1+
using System.ComponentModel.DataAnnotations;
52

63
namespace SafeCrypt.Models
74
{

src/Encryption/AesEncryption/Models/Decrypt/DecryptionData.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
1+
using System.Collections.Generic;
42

53
namespace SafeCrypt.Models
64
{

src/Encryption/AesEncryption/Models/Encrypt/EncryptionData.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
1+
using System.Collections.Generic;
42

53
namespace SafeCrypt.Models
64
{

src/Encryption/AesEncryption/Models/Encrypt/EncryptionParameters.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.ComponentModel.DataAnnotations;
4-
using System.Text;
1+
using System.ComponentModel.DataAnnotations;
2+
53

64
namespace SafeCrypt.Models
75
{

src/Enums/ReturnType.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
4-
5-
namespace SafeCrypt.Enums
1+
namespace SafeCrypt.Enums
62
{
73
public enum ReturnType
84
{

src/Helpers/Validators.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
using SafeCrypt.Models;
22
using System;
3-
using System.Collections.Generic;
4-
using System.Text;
53

64
namespace SafeCrypt.Helpers
75
{

0 commit comments

Comments
 (0)