Skip to content

Commit 723ea28

Browse files
committed
Remove unused function
1 parent 6b65184 commit 723ea28

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

MCPForUnity/Editor/Helpers/McpConfigurationHelper.cs

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -225,20 +225,6 @@ private static bool IsValidUvBinary(string path)
225225
catch { return false; }
226226
}
227227

228-
/// <summary>
229-
/// Compares two string arrays for equality
230-
/// </summary>
231-
private static bool ArgsEqual(string[] a, string[] b)
232-
{
233-
if (a == null || b == null) return a == b;
234-
if (a.Length != b.Length) return false;
235-
for (int i = 0; i < a.Length; i++)
236-
{
237-
if (!string.Equals(a[i], b[i], StringComparison.Ordinal)) return false;
238-
}
239-
return true;
240-
}
241-
242228
/// <summary>
243229
/// Gets the appropriate config file path for the given MCP client based on OS
244230
/// </summary>

0 commit comments

Comments
 (0)