Minor changes

This commit is contained in:
Robert McRackan 2019-11-05 21:48:02 -05:00
parent bd993b4e4d
commit 6aa544b322
3 changed files with 8 additions and 18 deletions

View file

@ -70,10 +70,5 @@ namespace FileManager
property = property.Replace(ch.ToString(), "");
return property;
}
public static string TitleCompressed(string title)
=> new string(title
.Where(c => (char.IsLetterOrDigit(c)))
.ToArray());
}
}