internal static void SortByDocID(this RevisionList list)
 {
     list.Sort((r1, r2) => r1.DocID.CompareTo(r2.DocID));
 }