Skip to content

Commit 417f119

Browse files
committed
Cleanup.
1 parent 337276c commit 417f119

35 files changed

+81
-117
lines changed

Provider/src/EntityFramework.Firebird.Tests/InfrastructureTests.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,6 @@
1616
//$Authors = Jiri Cincura (jiri@cincura.net)
1717

1818
using System;
19-
using System.Collections.Generic;
20-
using System.Data.Entity;
21-
using System.Data.Entity.Core.Common;
22-
using System.Linq;
23-
using FirebirdSql.Data.FirebirdClient;
2419
using NUnit.Framework;
2520

2621
namespace EntityFramework.Firebird.Tests

Provider/src/EntityFramework.Firebird.Tests/QueryTests.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,8 @@
1515

1616
//$Authors = Jiri Cincura (jiri@cincura.net)
1717

18-
using System;
1918
using System.Collections.Generic;
2019
using System.Data.Entity;
21-
using System.Data.Entity.Core.Common;
2220
using System.Linq;
2321
using FirebirdSql.Data.FirebirdClient;
2422
using NUnit.Framework;

Provider/src/EntityFramework.Firebird/FbProviderManifest.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
using System.Data.Entity.Core.Common;
2121
using System.Data.Entity.Core.Metadata.Edm;
2222
using System.Diagnostics;
23-
using System.IO;
2423
using System.Reflection;
2524
using System.Text;
2625
using System.Xml;

Provider/src/EntityFramework.Firebird/FbProviderServices.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
//$Authors = Jiri Cincura (jiri@cincura.net)
1717

1818
using System;
19-
using System.Collections.Generic;
2019
using System.Data;
2120
using System.Data.Common;
2221
using System.Data.Entity.Core.Common;

Provider/src/EntityFramework.Firebird/SqlGen/SqlGenerator.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717

1818
using System;
1919
using System.Collections.Generic;
20+
using System.Data;
21+
using System.Data.Common;
22+
using System.Data.Entity.Core.Common.CommandTrees;
23+
using System.Data.Entity.Core.Metadata.Edm;
2024
using System.Diagnostics;
2125
using System.Globalization;
2226
using System.Text;
23-
using System.Data.Common;
24-
using System.Data.Entity.Core.Metadata.Edm;
25-
using System.Data.Entity.Core.Common.CommandTrees;
26-
using System.Data;
2727
using FirebirdSql.Data.Common;
2828

2929
namespace EntityFramework.Firebird.SqlGen

Provider/src/EntityFramework.Firebird/SqlGen/SqlWriter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ internal class SqlWriter : StringWriter
2626
#region Fields
2727

2828
// We start at -1, since the first select statement will increment it to 0.
29-
private int _indent = -1;
30-
private bool _atBeginningOfLine = true;
29+
private int _indent = -1;
30+
private bool _atBeginningOfLine = true;
3131

3232
#endregion
3333

Provider/src/EntityFramework.Firebird/SsdlToFb.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717

1818
using System;
1919
using System.Collections.Generic;
20+
using System.Data.Entity.Core.Metadata.Edm;
2021
using System.Linq;
2122
using System.Text;
22-
using System.Data.Entity.Core.Metadata.Edm;
2323
using EntityFramework.Firebird.SqlGen;
2424

2525
namespace EntityFramework.Firebird

Provider/src/FirebirdSql.Data.FirebirdClient.Tests/ConnectionPoolLifetimeHelperTests.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@
1515

1616
//$Authors = @realic, Jiri Cincura (jiri@cincura.net)
1717

18-
using System;
1918
using FirebirdSql.Data.Common;
20-
using FirebirdSql.Data.FirebirdClient;
2119
using NUnit.Framework;
2220

2321
namespace FirebirdSql.Data.UnitTests

Provider/src/FirebirdSql.Data.FirebirdClient.Tests/FbArrayTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
using System;
1919
using System.Linq;
2020
using System.Security.Cryptography;
21-
using FirebirdSql.Data.FirebirdClient;
2221
using FirebirdSql.Data.TestsBase;
2322
using NUnit.Framework;
2423

Provider/src/FirebirdSql.Data.FirebirdClient.Tests/FbBlobTests.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@
1515

1616
//$Authors = Carlos Guzman Alvarez, Jiri Cincura (jiri@cincura.net)
1717

18-
using System;
1918
using System.Security.Cryptography;
20-
using FirebirdSql.Data.FirebirdClient;
2119
using FirebirdSql.Data.TestsBase;
2220
using NUnit.Framework;
2321

0 commit comments

Comments
 (0)