Skip to content

Commit

Permalink
added commented out helper method
Browse files Browse the repository at this point in the history
  • Loading branch information
Hendy committed Dec 9, 2018
1 parent 9ae649b commit ef0bd18
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/Our.Umbraco.Look/Models/Facet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,14 @@ public class Facet
/// The total number of results expected should this facet be applied to the curent query
/// </summary>
public int Count { get; internal set; }

///// <summary>
///// helper to see if the tags collection for this facet is a single item, matching that supplied
///// </summary>
///// <param name="lookTag"></param>
//internal bool Equals(LookTag lookTag)
//{
// return lookTag != null && this.Tags.Length == 1 && this.Tags[0].Equals(lookTag);
//}
}
}

0 comments on commit ef0bd18

Please sign in to comment.