Skip to content

Commit 80d347b

Browse files
authored
Merge pull request BlogEngine#109 from ThisWillDoIt/master
Removed unused usings
2 parents ecd6f2d + a6bb2d8 commit 80d347b

File tree

69 files changed

+9
-158
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+9
-158
lines changed

BlogEngine/BlogEngine.Core/Blog.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
using System;
22
using System.Collections.Generic;
33
using System.Linq;
4-
using System.Web.Caching;
54
using BlogEngine.Core.Providers;
65
using System.Web;
76
using System.Web.Hosting;

BlogEngine/BlogEngine.Core/BlogSettings.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
using System;
44
using System.Collections.Generic;
55
using System.Collections.Specialized;
6-
using System.Configuration;
76
using System.Globalization;
87
using System.Web;
98

BlogEngine/BlogEngine.Core/BusinessBase.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,10 @@
22
{
33
using System;
44
using System.Collections.Generic;
5-
using System.Collections.Specialized;
65
using System.ComponentModel;
76
using System.Globalization;
87
using System.Security;
98
using System.Text;
10-
using System.Threading;
11-
using System.Web.Security;
129

1310
/// <summary>
1411
/// This is the base class from which most business objects will be derived.

BlogEngine/BlogEngine.Core/Category.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
using System;
44
using System.Collections.Generic;
55
using System.Linq;
6-
using System.Web;
76

87
using BlogEngine.Core.Providers;
98

BlogEngine/BlogEngine.Core/Data/BlogRepository.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
using BlogEngine.Core.Data.Models;
33
using System;
44
using System.Collections.Generic;
5-
using System.Globalization;
65
using System.Linq;
76
using System.Linq.Dynamic;
87
using System.Web.Hosting;

BlogEngine/BlogEngine.Core/Data/CommentFilterRepository.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,8 @@
44
using System;
55
using System.Collections.Generic;
66
using System.Data;
7-
using System.Globalization;
87
using System.Linq;
98
using System.Linq.Dynamic;
10-
using System.Web.Hosting;
119

1210
namespace BlogEngine.Core.Data
1311
{

BlogEngine/BlogEngine.Core/Data/CommentsRepository.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
using System;
66
using System.Collections.Generic;
77
using System.Linq;
8-
using System.Linq.Dynamic;
98
using System.Web;
109
using System.Web.Security;
1110

BlogEngine/BlogEngine.Core/Data/Contracts/ICategoryRepository.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
using System;
22
using System.Collections.Generic;
3-
using System.Linq;
4-
using System.Text;
5-
using System.Threading.Tasks;
63

74
namespace BlogEngine.Core.Data.Contracts
85
{

BlogEngine/BlogEngine.Core/Data/Contracts/ICustomFieldRepository.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
1+
using System.Collections.Generic;
32
using BlogEngine.Core.Data.Models;
43

54
namespace BlogEngine.Core.Data.Contracts

BlogEngine/BlogEngine.Core/Data/Contracts/IFileManagerRepository.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
using BlogEngine.Core.Data.Models;
2-
using BlogEngine.Core.FileSystem;
3-
using System;
1+
using BlogEngine.Core.FileSystem;
42
using System.Collections.Generic;
53

64
namespace BlogEngine.Core.Data.Contracts

0 commit comments

Comments
 (0)