We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b65184 commit 723ea28Copy full SHA for 723ea28
MCPForUnity/Editor/Helpers/McpConfigurationHelper.cs
@@ -225,20 +225,6 @@ private static bool IsValidUvBinary(string path)
225
catch { return false; }
226
}
227
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
-
242
/// <summary>
243
/// Gets the appropriate config file path for the given MCP client based on OS
244
/// </summary>
0 commit comments