summaryrefslogtreecommitdiff
path: root/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
commit6e2de8b2e5b3a7e1558ba5328431300a87953a39 (patch)
treef9a861c9c1c9a04d6d2f2d901ddbbf4dd06cb145 /dotnet/Qpid.Client/Client/Handler/ConnectionStartMethodHandler.cs
parenta7c424416087c556ac045786009473f0e6d93e40 (diff)
downloadqpid-python-6e2de8b2e5b3a7e1558ba5328431300a87953a39.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/qpid@492998 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dotnet/Qpid.Client/Client/Handler/ConnectionStartMethodHandler.cs')
-rw-r--r--dotnet/Qpid.Client/Client/Handler/ConnectionStartMethodHandler.cs2
1 files changed, 1 insertions, 1 deletions
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)
{