From 6e2de8b2e5b3a7e1558ba5328431300a87953a39 Mon Sep 17 00:00:00 2001 From: Robert Greig Date: Fri, 5 Jan 2007 11:56:51 +0000 Subject: Qpid-238 patch applied. Strange workaround for non-existant bug in string.Split removed. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@492998 13f79535-47bb-0310-9956-ffa450edef68 --- dotnet/Qpid.Client/Client/Handler/ConnectionStartMethodHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dotnet/Qpid.Client/Client/Handler/ConnectionStartMethodHandler.cs') diff --git a/dotnet/Qpid.Client/Client/Handler/ConnectionStartMethodHandler.cs b/dotnet/Qpid.Client/Client/Handler/ConnectionStartMethodHandler.cs index 2bba8662bb..e88ff3ddbd 100644 --- a/dotnet/Qpid.Client/Client/Handler/ConnectionStartMethodHandler.cs +++ b/dotnet/Qpid.Client/Client/Handler/ConnectionStartMethodHandler.cs @@ -70,7 +70,7 @@ namespace Qpid.Client.Handler throw new AMQException("Locales is not defined in Connection Start method"); } string allLocales = Encoding.ASCII.GetString(body.Locales); - string[] locales = allLocales.Split(new char[] { ' ' }); + string[] locales = allLocales.Split(' '); string selectedLocale; if (locales != null && locales.Length > 0) { -- cgit v1.2.1