diff --git a/Directory.Packages.props b/Directory.Packages.props
index e76d6d782..359e51a00 100644
--- a/Directory.Packages.props
+++ b/Directory.Packages.props
@@ -6,7 +6,6 @@
-
diff --git a/src/Microsoft.ComponentDetection.Orchestrator/ArgumentHelper.cs b/src/Microsoft.ComponentDetection.Orchestrator/ArgumentHelper.cs
deleted file mode 100644
index 820983517..000000000
--- a/src/Microsoft.ComponentDetection.Orchestrator/ArgumentHelper.cs
+++ /dev/null
@@ -1,50 +0,0 @@
-namespace Microsoft.ComponentDetection.Orchestrator;
-
-using System.Collections.Generic;
-using System.Linq;
-using CommandLine;
-using Microsoft.ComponentDetection.Orchestrator.Commands;
-
-internal class ArgumentHelper : IArgumentHelper
-{
- private readonly IEnumerable argumentSets;
-
- public ArgumentHelper(IEnumerable argumentSets) => this.argumentSets = argumentSets;
-
- public static IDictionary GetDetectorArgs(IEnumerable detectorArgsList)
- {
- var detectorArgs = new Dictionary();
-
- foreach (var arg in detectorArgsList)
- {
- var keyValue = arg.Split('=');
-
- if (keyValue.Length != 2)
- {
- continue;
- }
-
- detectorArgs.Add(keyValue[0], keyValue[1]);
- }
-
- return detectorArgs;
- }
-
- public ParserResult
-