From 3ed6839b638713d492bc498bb8c53addcd9d3d8d Mon Sep 17 00:00:00 2001 From: Niggl Date: Fri, 5 Jun 2020 15:59:02 +0200 Subject: [PATCH] Removed Unnessecary Imports from: UserstoriesController --- ScrumTaskboard/Controllers/UserstoriesController.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/ScrumTaskboard/Controllers/UserstoriesController.cs b/ScrumTaskboard/Controllers/UserstoriesController.cs index 9fcf9dc..92cb885 100644 --- a/ScrumTaskboard/Controllers/UserstoriesController.cs +++ b/ScrumTaskboard/Controllers/UserstoriesController.cs @@ -1,11 +1,8 @@ -using System; -using System.Collections.Generic; +using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; -using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Microsoft.EntityFrameworkCore; -using ScrumTaskboard; namespace ScrumTaskboard.Controllers {