• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revisãoc0c275615e0e7635d3aebcf3765a5f170ddb2f16 (tree)
Hora2022-05-27 23:05:24
Autoryoshy <yoshy.org.bitbucket@gz.j...>
Commiteryoshy

Mensagem de Log

[CLEAN] 不要なusing文の削除、推奨事項対応

Mudança Sumário

Diff

--- a/Adaptor/Boundary/Controller/IAttachHandlerQueueMap.cs
+++ b/Adaptor/Boundary/Controller/IAttachHandlerQueueMap.cs
@@ -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 CleanAuLait48.Adaptor.Boundary.Controller
85 {
--- a/Adaptor/Controller/AsyncHandlerContextFactoryRegistrar.cs
+++ b/Adaptor/Controller/AsyncHandlerContextFactoryRegistrar.cs
@@ -1,7 +1,4 @@
11 using CleanAuLait48.Adaptor.Boundary.Controller;
2-using CleanAuLait48.Core.DI;
3-using System;
4-using System.Collections.Generic;
52
63 namespace CleanAuLait48.Adaptor.Controller
74 {
--- a/Adaptor/Controller/HandlerContextFactoryRegistrar.cs
+++ b/Adaptor/Controller/HandlerContextFactoryRegistrar.cs
@@ -1,7 +1,4 @@
11 using CleanAuLait48.Adaptor.Boundary.Controller;
2-using CleanAuLait48.Core.DI;
3-using System;
4-using System.Collections.Generic;
52
63 namespace CleanAuLait48.Adaptor.Controller
74 {
--- a/CleanAuLait48ComponentRegisterer.cs
+++ b/CleanAuLait48ComponentRegisterer.cs
@@ -1,6 +1,4 @@
1-using CleanAuLait48.Adaptor.Boundary.Controller;
2-using CleanAuLait48.Adaptor.Controller;
3-using CleanAuLait48.Core.Async;
1+using CleanAuLait48.Core.Async;
42 using CleanAuLait48.Core.Config;
53 using CleanAuLait48.Core.DI;
64 using CleanAuLait48.Core.Resource;
--- a/Core/Disposables/SimpleDisposables.cs
+++ b/Core/Disposables/SimpleDisposables.cs
@@ -5,7 +5,7 @@ namespace CleanAuLait48.Core.Disposables
55 {
66 public class SimpleDisposables : IDisposable
77 {
8- IList<IDisposable> disposables = new List<IDisposable>();
8+ private readonly IList<IDisposable> disposables = new List<IDisposable>();
99
1010 private bool disposedValue;
1111