From 4c50eda6f91a188480298de2b485ad79aadf9681 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Gurhem?= Date: Mon, 4 Dec 2023 15:41:22 +0100 Subject: [PATCH] refactor: remove unused class --- Worker/src/DLLWorker/ServiceCollectionExt.cs | 30 -------------------- 1 file changed, 30 deletions(-) delete mode 100644 Worker/src/DLLWorker/ServiceCollectionExt.cs diff --git a/Worker/src/DLLWorker/ServiceCollectionExt.cs b/Worker/src/DLLWorker/ServiceCollectionExt.cs deleted file mode 100644 index b5e7a403..00000000 --- a/Worker/src/DLLWorker/ServiceCollectionExt.cs +++ /dev/null @@ -1,30 +0,0 @@ -// This file is part of the ArmoniK project -// -// Copyright (C) ANEO, 2021-2023. All rights reserved. -// -// Licensed under the Apache License, Version 2.0 (the "License") -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -using JetBrains.Annotations; - -using Microsoft.Extensions.Configuration; -using Microsoft.Extensions.DependencyInjection; - -namespace ArmoniK.DevelopmentKit.Worker.DLLWorker; - -public static class ServiceCollectionExt -{ - [PublicAPI] - public static IServiceCollection AddConfiguration(this IServiceCollection serviceCollection, - IConfiguration configuration) - => serviceCollection; -}