Habanero.Faces.Test.Base.Mappers.CustomRemoveLookupComboBoxMapperStub.CustomiseLookupList C# (CSharp) Method

CustomiseLookupList() protected method

protected CustomiseLookupList ( string>.Dictionary col ) : void
col string>.Dictionary
return void
        protected override void CustomiseLookupList(Dictionary<string, string> col)
        {
            string lastKey = "";
            foreach (string key in col.Keys)
            {
                lastKey = key;
            }

            col.Remove(lastKey);
        }
    }