mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-18 03:22:44 +01:00
Did a simple search/replace on the whole repo (except the RSSDP project)
This reduces LOC and should improve performance (methods containing a throw statement don't get inlined)
```
if \((\w+) == null\)
\s+\{
\s+throw new ArgumentNullException\((.*)\);
\s+\}
```
```
ArgumentNullException.ThrowIfNull($1);
```
|
||
|---|---|---|
| .. | ||
| AiredEpisodeOrderComparer.cs | ||
| AlbumArtistComparer.cs | ||
| AlbumComparer.cs | ||
| ArtistComparer.cs | ||
| CommunityRatingComparer.cs | ||
| CriticRatingComparer.cs | ||
| DateCreatedComparer.cs | ||
| DateLastMediaAddedComparer.cs | ||
| DatePlayedComparer.cs | ||
| IndexNumberComparer.cs | ||
| IsFavoriteOrLikeComparer.cs | ||
| IsFolderComparer.cs | ||
| IsPlayedComparer.cs | ||
| IsUnplayedComparer.cs | ||
| NameComparer.cs | ||
| OfficialRatingComparer.cs | ||
| ParentIndexNumberComparer.cs | ||
| PlayCountComparer.cs | ||
| PremiereDateComparer.cs | ||
| ProductionYearComparer.cs | ||
| RandomComparer.cs | ||
| RuntimeComparer.cs | ||
| SeriesSortNameComparer.cs | ||
| SortNameComparer.cs | ||
| StartDateComparer.cs | ||
| StudioComparer.cs | ||