Castle.Components.Binder.TreeBuilder.NormalizeKey C# (CSharp) Method

NormalizeKey() private method

private NormalizeKey ( string key ) : string
key string
return string
		private string NormalizeKey(string key)
		{
				return key.EndsWith("[]") ? key.Substring(0, key.Length - 2) : key;
		}