summaryrefslogtreecommitdiff
path: root/qpid/dotnet/Qpid.Client/Client/Handler/ConnectionStartMethodHandler.cs
diff options
context:
space:
mode:
authorRobert Greig <rgreig@apache.org>2007-01-05 11:56:51 +0000
committerRobert Greig <rgreig@apache.org>2007-01-05 11:56:51 +0000
commitf792808251d9fd00dc45282a9a8a1d6e2dea37b5 (patch)
tree901d70c724ed357c7fe77f14796f56aa246e5b69 /qpid/dotnet/Qpid.Client/Client/Handler/ConnectionStartMethodHandler.cs
parent4bd746c40eb9094ce967ea8a3cebeec983de6b0b (diff)
downloadqpid-python-f792808251d9fd00dc45282a9a8a1d6e2dea37b5.tar.gz
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@492998 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/dotnet/Qpid.Client/Client/Handler/ConnectionStartMethodHandler.cs')
-rw-r--r--qpid/dotnet/Qpid.Client/Client/Handler/ConnectionStartMethodHandler.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/dotnet/Qpid.Client/Client/Handler/ConnectionStartMethodHandler.cs b/qpid/dotnet/Qpid.Client/Client/Handler/ConnectionStartMethodHandler.cs
index 2bba8662bb..e88ff3ddbd 100644
--- a/qpid/dotnet/Qpid.Client/Client/Handler/ConnectionStartMethodHandler.cs
+++ b/qpid/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)
{