diff --git a/ArchiSteamFarm/Plugins/Interfaces/ICustomMachineInfoProvider.cs b/ArchiSteamFarm/Plugins/Interfaces/ICustomMachineInfoProvider.cs
deleted file mode 100644
index e7d2e2918..000000000
--- a/ArchiSteamFarm/Plugins/Interfaces/ICustomMachineInfoProvider.cs
+++ /dev/null
@@ -1,37 +0,0 @@
-// _ _ _ ____ _ _____
-// / \ _ __ ___ | |__ (_)/ ___| | |_ ___ __ _ _ __ ___ | ___|__ _ _ __ _ __ ___
-// / _ \ | '__|/ __|| '_ \ | |\___ \ | __|/ _ \ / _` || '_ ` _ \ | |_ / _` || '__|| '_ ` _ \
-// / ___ \ | | | (__ | | | || | ___) || |_| __/| (_| || | | | | || _|| (_| || | | | | | | |
-// /_/ \_\|_| \___||_| |_||_||____/ \__|\___| \__,_||_| |_| |_||_| \__,_||_| |_| |_| |_|
-// |
-// Copyright 2015-2023 Ćukasz "JustArchi" Domeradzki
-// Contact: JustArchi@JustArchi.net
-// |
-// 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 System;
-using JetBrains.Annotations;
-using SteamKit2;
-
-namespace ArchiSteamFarm.Plugins.Interfaces;
-
-[Obsolete($"Use {nameof(IBotCustomMachineInfoProvider)} instead, this interface will be removed in the future version")]
-[PublicAPI]
-public interface ICustomMachineInfoProvider : IPlugin {
- ///
- /// ASF will use this property as the for the bots.
- /// Unless you know what you're doing, you should not implement this property yourself and let ASF decide.
- ///
- /// that will be used for the bots.
- IMachineInfoProvider MachineInfoProvider { get; }
-}
diff --git a/ArchiSteamFarm/Plugins/PluginsCore.cs b/ArchiSteamFarm/Plugins/PluginsCore.cs
index 2b1f51808..f45e8639c 100644
--- a/ArchiSteamFarm/Plugins/PluginsCore.cs
+++ b/ArchiSteamFarm/Plugins/PluginsCore.cs
@@ -154,9 +154,7 @@ public static class PluginsCore {
return null;
}
-#pragma warning disable CS0612 // TODO: Fair warning, remove ?? fallback in the next release cycle
- return results.FirstOrDefault(static result => result != null) ?? await GetCustomMachineInfoProviderFallback().ConfigureAwait(false);
-#pragma warning restore CS0612 // TODO: Fair warning, remove ?? fallback in the next release cycle
+ return results.FirstOrDefault(static result => result != null);
}
[UnconditionalSuppressMessage("AssemblyLoadTrimming", "IL2026:RequiresUnreferencedCode", Justification = "We don't care about trimmed assemblies, as we need it to work only with the known (used) ones")]
@@ -655,25 +653,6 @@ public static class PluginsCore {
}
}
- [Obsolete]
- private static async Task GetCustomMachineInfoProviderFallback() {
- if (ActivePlugins == null) {
- return null;
- }
-
- IList results;
-
- try {
- results = await Utilities.InParallel(ActivePlugins.OfType().Select(static plugin => Task.Run(() => plugin.MachineInfoProvider))).ConfigureAwait(false);
- } catch (Exception e) {
- ASF.ArchiLogger.LogGenericException(e);
-
- return null;
- }
-
- return results.FirstOrDefault();
- }
-
[UnconditionalSuppressMessage("AssemblyLoadTrimming", "IL2026:RequiresUnreferencedCode", Justification = "We don't care about trimmed assemblies, as we need it to work only with the known (used) ones")]
private static HashSet? LoadAssembliesFrom(string path) {
if (string.IsNullOrEmpty(path)) {