From f6c1aece9e76baca95823e78ad1db64f3660c17b Mon Sep 17 00:00:00 2001 From: John Sheehan Date: Thu, 12 Apr 2012 22:30:22 -0700 Subject: [PATCH] playing nice with spaces --- src/ServiceStack.Redis/RedisNativeClient.cs | 22 ++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/ServiceStack.Redis/RedisNativeClient.cs b/src/ServiceStack.Redis/RedisNativeClient.cs index fdc44f73..d263563e 100644 --- a/src/ServiceStack.Redis/RedisNativeClient.cs +++ b/src/ServiceStack.Redis/RedisNativeClient.cs @@ -104,19 +104,19 @@ internal IRedisPipelineShared Pipeline public RedisNativeClient(string host) : this(host, DefaultPort) {} - public RedisNativeClient(string host, int port) - : this(host, port, null) {} + public RedisNativeClient(string host, int port) + : this(host, port, null) {} - public RedisNativeClient(string host, int port, string password) - { - if (host == null) - throw new ArgumentNullException("host"); + public RedisNativeClient(string host, int port, string password) + { + if (host == null) + throw new ArgumentNullException("host"); - Host = host; - Port = port; - SendTimeout = -1; - Password = password; - } + Host = host; + Port = port; + SendTimeout = -1; + Password = password; + } public RedisNativeClient() : this(DefaultHost, DefaultPort) {}