diff options
Diffstat (limited to 'dotnet/Qpid.Client/Client/Handler/ConnectionStartMethodHandler.cs')
| -rw-r--r-- | dotnet/Qpid.Client/Client/Handler/ConnectionStartMethodHandler.cs | 2 |
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) { |
