- remove unneeded annotations

pull/62/head
Simon G. 3 days ago
parent 8d9777a954
commit b16721164b
Signed by: SimonG
GPG Key ID: 0B82B964BA536523
  1. 4
      Test.LightweightIocContainer.FactoryGenerator/TestClasses/Factories/IAFactory.cs
  2. 4
      Test.LightweightIocContainer.FactoryGenerator/TestClasses/TestByte.cs

@ -1,9 +1,7 @@
using JetBrains.Annotations;
using Test.LightweightIocContainer.FactoryGenerator.TestClasses.Interfaces;
using Test.LightweightIocContainer.FactoryGenerator.TestClasses.Interfaces;
namespace Test.LightweightIocContainer.FactoryGenerator.TestClasses.Factories;
[UsedImplicitly]
public interface IAFactory
{
IA Create();

@ -1,11 +1,9 @@
using JetBrains.Annotations;
using Test.LightweightIocContainer.FactoryGenerator.TestClasses.Interfaces;
using Test.LightweightIocContainer.FactoryGenerator.TestClasses.Interfaces;
namespace Test.LightweightIocContainer.FactoryGenerator.TestClasses;
public class TestByte : IDefaultTest
{
[UsedImplicitly]
private readonly byte _id;
public TestByte(byte id) => _id = id;

Loading…
Cancel
Save