From 90efa03f22c72b657ead86f06dc2292123172df4 Mon Sep 17 00:00:00 2001 From: Simon Gockner Date: Thu, 4 Jul 2019 10:09:41 +0200 Subject: [PATCH] - fix double comment in headers --- LightweightIocContainer/EnumerableExtension.cs | 6 +++--- .../Exceptions/IllegalAbstractMethodCreationException.cs | 6 +++--- .../Exceptions/MultipleRegistrationException.cs | 6 +++--- .../Exceptions/MultitonResolveException.cs | 6 +++--- LightweightIocContainer/Installers/AssemblyInstaller.cs | 6 +++--- LightweightIocContainer/Installers/FromAssembly.cs | 6 +++--- .../Interfaces/Installers/IAssemblyInstaller.cs | 6 +++--- .../Interfaces/Registrations/IMultitonRegistration.cs | 6 +++--- .../Registrations/MultitonRegistration.cs | 6 +++--- LightweightIocContainer/TypeExtension.cs | 6 +++--- Test.LightweightIocContainer/AssemblyInstallerTest.cs | 6 +++--- Test.LightweightIocContainer/DefaultRegistrationTest.cs | 6 +++--- 12 files changed, 36 insertions(+), 36 deletions(-) diff --git a/LightweightIocContainer/EnumerableExtension.cs b/LightweightIocContainer/EnumerableExtension.cs index 99f150c..efd7c62 100644 --- a/LightweightIocContainer/EnumerableExtension.cs +++ b/LightweightIocContainer/EnumerableExtension.cs @@ -1,6 +1,6 @@ -// // Author: Gockner, Simon -// // Created: 2019-07-02 -// // Copyright(c) 2019 SimonG. All Rights Reserved. +// Author: Gockner, Simon +// Created: 2019-07-02 +// Copyright(c) 2019 SimonG. All Rights Reserved. using System; using System.Collections.Generic; diff --git a/LightweightIocContainer/Exceptions/IllegalAbstractMethodCreationException.cs b/LightweightIocContainer/Exceptions/IllegalAbstractMethodCreationException.cs index 3191e23..9e738c7 100644 --- a/LightweightIocContainer/Exceptions/IllegalAbstractMethodCreationException.cs +++ b/LightweightIocContainer/Exceptions/IllegalAbstractMethodCreationException.cs @@ -1,6 +1,6 @@ -// // Author: Gockner, Simon -// // Created: 2019-06-28 -// // Copyright(c) 2019 SimonG. All Rights Reserved. +// Author: Gockner, Simon +// Created: 2019-06-28 +// Copyright(c) 2019 SimonG. All Rights Reserved. using System; using System.Reflection; diff --git a/LightweightIocContainer/Exceptions/MultipleRegistrationException.cs b/LightweightIocContainer/Exceptions/MultipleRegistrationException.cs index eaf8c9a..6047a0f 100644 --- a/LightweightIocContainer/Exceptions/MultipleRegistrationException.cs +++ b/LightweightIocContainer/Exceptions/MultipleRegistrationException.cs @@ -1,6 +1,6 @@ -// // Author: Gockner, Simon -// // Created: 2019-06-07 -// // Copyright(c) 2019 SimonG. All Rights Reserved. +// Author: Gockner, Simon +// Created: 2019-06-07 +// Copyright(c) 2019 SimonG. All Rights Reserved. using System; using LightweightIocContainer.Interfaces; diff --git a/LightweightIocContainer/Exceptions/MultitonResolveException.cs b/LightweightIocContainer/Exceptions/MultitonResolveException.cs index 860f6ec..3682a63 100644 --- a/LightweightIocContainer/Exceptions/MultitonResolveException.cs +++ b/LightweightIocContainer/Exceptions/MultitonResolveException.cs @@ -1,6 +1,6 @@ -// // Author: Gockner, Simon -// // Created: 2019-06-07 -// // Copyright(c) 2019 SimonG. All Rights Reserved. +// Author: Gockner, Simon +// Created: 2019-06-07 +// Copyright(c) 2019 SimonG. All Rights Reserved. using System; diff --git a/LightweightIocContainer/Installers/AssemblyInstaller.cs b/LightweightIocContainer/Installers/AssemblyInstaller.cs index a340ab5..8823855 100644 --- a/LightweightIocContainer/Installers/AssemblyInstaller.cs +++ b/LightweightIocContainer/Installers/AssemblyInstaller.cs @@ -1,6 +1,6 @@ -// // Author: Gockner, Simon -// // Created: 2019-06-12 -// // Copyright(c) 2019 SimonG. All Rights Reserved. +// Author: Gockner, Simon +// Created: 2019-06-12 +// Copyright(c) 2019 SimonG. All Rights Reserved. using System; using System.Collections.Generic; diff --git a/LightweightIocContainer/Installers/FromAssembly.cs b/LightweightIocContainer/Installers/FromAssembly.cs index 4b09819..1eafbb9 100644 --- a/LightweightIocContainer/Installers/FromAssembly.cs +++ b/LightweightIocContainer/Installers/FromAssembly.cs @@ -1,6 +1,6 @@ -// // Author: Gockner, Simon -// // Created: 2019-06-12 -// // Copyright(c) 2019 SimonG. All Rights Reserved. +// Author: Gockner, Simon +// Created: 2019-06-12 +// Copyright(c) 2019 SimonG. All Rights Reserved. using System.Reflection; using LightweightIocContainer.Interfaces.Installers; diff --git a/LightweightIocContainer/Interfaces/Installers/IAssemblyInstaller.cs b/LightweightIocContainer/Interfaces/Installers/IAssemblyInstaller.cs index 250119d..7ff917d 100644 --- a/LightweightIocContainer/Interfaces/Installers/IAssemblyInstaller.cs +++ b/LightweightIocContainer/Interfaces/Installers/IAssemblyInstaller.cs @@ -1,6 +1,6 @@ -// // Author: Gockner, Simon -// // Created: 2019-06-12 -// // Copyright(c) 2019 SimonG. All Rights Reserved. +// Author: Gockner, Simon +// Created: 2019-06-12 +// Copyright(c) 2019 SimonG. All Rights Reserved. using System.Collections.Generic; using System.Reflection; diff --git a/LightweightIocContainer/Interfaces/Registrations/IMultitonRegistration.cs b/LightweightIocContainer/Interfaces/Registrations/IMultitonRegistration.cs index 4a7e5a5..00b8709 100644 --- a/LightweightIocContainer/Interfaces/Registrations/IMultitonRegistration.cs +++ b/LightweightIocContainer/Interfaces/Registrations/IMultitonRegistration.cs @@ -1,6 +1,6 @@ -// // Author: Gockner, Simon -// // Created: 2019-06-07 -// // Copyright(c) 2019 SimonG. All Rights Reserved. +// Author: Gockner, Simon +// Created: 2019-06-07 +// Copyright(c) 2019 SimonG. All Rights Reserved. using System; diff --git a/LightweightIocContainer/Registrations/MultitonRegistration.cs b/LightweightIocContainer/Registrations/MultitonRegistration.cs index f253075..4727978 100644 --- a/LightweightIocContainer/Registrations/MultitonRegistration.cs +++ b/LightweightIocContainer/Registrations/MultitonRegistration.cs @@ -1,6 +1,6 @@ -// // Author: Gockner, Simon -// // Created: 2019-06-07 -// // Copyright(c) 2019 SimonG. All Rights Reserved. +// Author: Gockner, Simon +// Created: 2019-06-07 +// Copyright(c) 2019 SimonG. All Rights Reserved. using System; using LightweightIocContainer.Interfaces.Registrations; diff --git a/LightweightIocContainer/TypeExtension.cs b/LightweightIocContainer/TypeExtension.cs index 5499448..aae517f 100644 --- a/LightweightIocContainer/TypeExtension.cs +++ b/LightweightIocContainer/TypeExtension.cs @@ -1,6 +1,6 @@ -// // Author: Gockner, Simon -// // Created: 2019-07-01 -// // Copyright(c) 2019 SimonG. All Rights Reserved. +// Author: Gockner, Simon +// Created: 2019-07-01 +// Copyright(c) 2019 SimonG. All Rights Reserved. using System; diff --git a/Test.LightweightIocContainer/AssemblyInstallerTest.cs b/Test.LightweightIocContainer/AssemblyInstallerTest.cs index 388aa79..4e183fc 100644 --- a/Test.LightweightIocContainer/AssemblyInstallerTest.cs +++ b/Test.LightweightIocContainer/AssemblyInstallerTest.cs @@ -1,6 +1,6 @@ -// // Author: Gockner, Simon -// // Created: 2019-06-12 -// // Copyright(c) 2019 SimonG. All Rights Reserved. +// Author: Gockner, Simon +// Created: 2019-06-12 +// Copyright(c) 2019 SimonG. All Rights Reserved. using System; using System.Collections.Generic; diff --git a/Test.LightweightIocContainer/DefaultRegistrationTest.cs b/Test.LightweightIocContainer/DefaultRegistrationTest.cs index afd47a3..2782158 100644 --- a/Test.LightweightIocContainer/DefaultRegistrationTest.cs +++ b/Test.LightweightIocContainer/DefaultRegistrationTest.cs @@ -1,6 +1,6 @@ -// // Author: Gockner, Simon -// // Created: 2019-06-06 -// // Copyright(c) 2019 SimonG. All Rights Reserved. +// Author: Gockner, Simon +// Created: 2019-06-06 +// Copyright(c) 2019 SimonG. All Rights Reserved. using System; using LightweightIocContainer.Interfaces.Registrations;