BrightIdeasSoftware.FilterMenuBuilder.SortClusters C# (CSharp) Method

SortClusters() protected method

Order the given list of clusters in the manner in which they should be presented to the user.
protected SortClusters ( IClusteringStrategy strategy, List clusters ) : void
strategy IClusteringStrategy
clusters List
return void
        protected virtual void SortClusters(IClusteringStrategy strategy, List<ICluster> clusters)
        {
            clusters.Sort();
        }