Skip to content
This repository has been archived by the owner on Apr 14, 2023. It is now read-only.

Commit

Permalink
Remove unnecessary usings
Browse files Browse the repository at this point in the history
  • Loading branch information
lucabriguglia committed Jan 26, 2022
1 parent f45fa15 commit 5248be2
Show file tree
Hide file tree
Showing 17 changed files with 8 additions and 26 deletions.
3 changes: 1 addition & 2 deletions src/Atles.Data/Configurations/EventConfiguration.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using Atles.Domain;
using Atles.Domain.Models;
using Atles.Domain.Models;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;

Expand Down
1 change: 0 additions & 1 deletion src/Atles.Data/Configurations/PostReactionConfiguration.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using Atles.Domain.Models.PostReactions;
using Atles.Domain.PostReactions;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
using Atles.Data;
using Microsoft.EntityFrameworkCore;
using System;
using System.Data;
using System.Threading.Tasks;
using Atles.Data.Configurations;
using Atles.Domain.Models;
using Atles.Domain.Models.Users;
using Atles.Domain.Models.Users.Commands;
Expand Down
3 changes: 1 addition & 2 deletions src/Atles.Domain.Models/Posts/Events/ReplySetAsAnswer.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System;
using Atles.Infrastructure.Events;
using Atles.Infrastructure.Events;

namespace Atles.Domain.Models.Posts.Events
{
Expand Down
3 changes: 1 addition & 2 deletions src/Atles.Domain.Models/Posts/Events/TopicDeleted.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System;
using Atles.Infrastructure.Events;
using Atles.Infrastructure.Events;

namespace Atles.Domain.Models.Posts.Events
{
Expand Down
3 changes: 1 addition & 2 deletions src/Atles.Domain.Models/Posts/PostReactionCount.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using Atles.Domain.PostReactions;
using Docs.Attributes;
using Docs.Attributes;
using System;
using Atles.Domain.Models;
using Atles.Domain.Models.PostReactions;
Expand Down
3 changes: 1 addition & 2 deletions src/Atles.Domain.Models/Users/Events/UserUpdated.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System.Collections.Generic;
using Atles.Infrastructure.Events;
using Atles.Infrastructure.Events;

namespace Atles.Domain.Models.Users.Events
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using Atles.Data;
using Atles.Data.Caching;
using Atles.Domain;
using Microsoft.AspNetCore.Identity;
using Microsoft.EntityFrameworkCore;
using System;
Expand Down
3 changes: 1 addition & 2 deletions src/Atles.Reporting.Models/Public/ForumPageModel.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using Atles.Domain.PostReactions;
using System;
using System;
using Atles.Reporting.Models.Shared;
using System.Collections.Generic;
using Atles.Domain.Models.PostReactions;
Expand Down
3 changes: 1 addition & 2 deletions src/Atles.Reporting.Models/Public/TopicPageModel.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using Atles.Domain.PostReactions;
using System;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using Atles.Domain.Models.PostReactions;
Expand Down
1 change: 0 additions & 1 deletion src/Atles.Server/Controllers/Admin/ForumsController.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System;
using System.Threading.Tasks;
using Atles.Domain;
using Atles.Domain.Models;
using Atles.Domain.Models.Forums.Commands;
using Atles.Domain.Models.Forums.Rules;
Expand Down
1 change: 0 additions & 1 deletion src/Atles.Server/Controllers/Admin/RolesController.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System.Collections.Generic;
using System.Threading.Tasks;
using Atles.Domain;
using Atles.Domain.Models;
using Atles.Infrastructure;
using Atles.Reporting.Models.Admin.Roles;
Expand Down
1 change: 0 additions & 1 deletion src/Atles.Server/Services/InstallationService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
using System.Collections.Generic;
using System.Threading.Tasks;
using Atles.Data;
using Atles.Domain;
using Atles.Domain.Models;
using Atles.Domain.Models.Categories;
using Atles.Domain.Models.Categories.Events;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
using Atles.Domain.Models.Forums;
using Atles.Domain.Models.PostReactions;
using Atles.Domain.Models.Posts;
using Atles.Domain.PostReactions;
using Atles.Domain.PostReactions.Commands;
using AutoFixture;
using Microsoft.EntityFrameworkCore;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
using System.Threading.Tasks;
using Atles.Data;
using Atles.Data.Caching;
using Atles.Domain.Handlers.Categories.Commands;
using Atles.Domain.Handlers.Sites.Commands;
using Atles.Domain.Models.Sites;
using Atles.Domain.Models.Sites.Commands;
Expand Down
1 change: 0 additions & 1 deletion test/Atles.Domain.Models.Tests/Posts/PostTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
using System.Linq;
using Atles.Domain.Models.PostReactions;
using Atles.Domain.Models.Posts;
using Atles.Domain.PostReactions;
using Atles.Domain.Posts;
using AutoFixture;
using NUnit.Framework;
Expand Down
3 changes: 1 addition & 2 deletions test/Atles.Infrastructure.Tests/SampleCommand.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System;
using Atles.Infrastructure.Commands;
using Atles.Infrastructure.Commands;

namespace Atles.Infrastructure.Tests
{
Expand Down

0 comments on commit 5248be2

Please sign in to comment.