Skip to content

Commit

Permalink
Remove unnecessary usings
Browse files Browse the repository at this point in the history
  • Loading branch information
metoule committed Aug 18, 2024
1 parent c3b1390 commit 5e70ae3
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 24 deletions.
28 changes: 12 additions & 16 deletions src/DynamicExpresso.Core/DefaultNumberType.cs
Original file line number Diff line number Diff line change
@@ -1,19 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;

namespace DynamicExpresso
{
/// <summary>
/// Setting the default number types when no suffix is specified
/// </summary>
public enum DefaultNumberType
{
Default = 0, //(Int by default or Double if real number)
Int = 1,
Long = 2,
Single = 3,
Double = 4,
Decimal = 5
}
/// <summary>
/// Setting the default number types when no suffix is specified
/// </summary>
public enum DefaultNumberType
{
Default = 0, //(Int by default or Double if real number)
Int = 1,
Long = 2,
Single = 3,
Double = 4,
Decimal = 5
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System;
using System.Runtime.Serialization;
using System.Security.Permissions;

namespace DynamicExpresso.Exceptions
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System;
using System.Runtime.Serialization;
using System.Security.Permissions;

namespace DynamicExpresso.Exceptions
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System;
using System.Runtime.Serialization;
using System.Security.Permissions;

namespace DynamicExpresso.Exceptions
{
Expand Down
1 change: 0 additions & 1 deletion src/DynamicExpresso.Core/Exceptions/ParseException.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System;
using System.Runtime.Serialization;
using System.Security.Permissions;
using DynamicExpresso.Resources;

namespace DynamicExpresso.Exceptions
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System;
using System.Security.Permissions;
using System.Runtime.Serialization;

namespace DynamicExpresso.Exceptions
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System;
using System.Runtime.Serialization;
using System.Security.Permissions;

namespace DynamicExpresso.Exceptions
{
Expand Down
1 change: 0 additions & 1 deletion src/DynamicExpresso.Core/Interpreter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
using System.Linq;
using System.Linq.Expressions;
using DynamicExpresso.Exceptions;
using System.Dynamic;

namespace DynamicExpresso
{
Expand Down
1 change: 0 additions & 1 deletion test/DynamicExpresso.UnitTest/LambdaExpressionTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;

namespace DynamicExpresso.UnitTest
{
Expand Down

0 comments on commit 5e70ae3

Please sign in to comment.