Skip to content

Commit d0443ba

Browse files
tsushitsushi
authored andcommitted
Refactoring. Remove unnessesary usings.
1 parent 6230ee5 commit d0443ba

File tree

6 files changed

+4
-32
lines changed

6 files changed

+4
-32
lines changed

Chapter02/WebCalculatorApplication/WebCalculatorService/App_Start/FormatterConfig.cs

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

72
namespace WebCalculatorService
83
{
94
using System.Net.Http.Formatting;

Chapter02/WebCalculatorApplication/WebCalculatorService/App_Start/RouteConfig.cs

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

72
namespace WebCalculatorService
83
{
94
using System.Web.Http;

Chapter02/WebCalculatorApplication/WebCalculatorService/Controllers/DefaultController.cs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
4-
using System.Text;
5-
using System.Threading.Tasks;
6-
1+

72
namespace WebCalculatorService.Controllers
83
{
9-
using System.Collections.Generic;
104
using System.Web.Http;
115
public class DefaultController : ApiController
126
{

Chapter02/WebCalculatorApplication/WebCalculatorService/IOwinAppBuilder.cs

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

72
namespace WebCalculatorService
83
{
94
using Owin;

Chapter02/WebCalculatorApplication/WebCalculatorService/OwinCommunicationListener.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
4-
using System.Text;
52
using System.Threading;
63
using System.Threading.Tasks;
7-
using Microsoft.ServiceFabric.Services;
84
using Microsoft.ServiceFabric.Services.Communication.Runtime;
95
using System.Fabric.Description;
10-
using Owin;
116
using Microsoft.Owin.Hosting;
127
using System.Fabric;
138
namespace WebCalculatorService

Chapter02/WebCalculatorApplication/WebCalculatorService/Program.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
using System;
22
using System.Diagnostics;
3-
using System.Fabric;
43
using System.Threading;
5-
using System.Threading.Tasks;
64
using Microsoft.ServiceFabric.Services.Runtime;
75

86
namespace WebCalculatorService

0 commit comments

Comments
 (0)