mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-01 04:53:29 +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);
```
|
||
|---|---|---|
| .. | ||
| BaseEncodingJobOptions.cs | ||
| EncodingHelper.cs | ||
| EncodingJobInfo.cs | ||
| FilterOptionType.cs | ||
| IAttachmentExtractor.cs | ||
| IEncodingManager.cs | ||
| ImageEncodingOptions.cs | ||
| IMediaEncoder.cs | ||
| ISubtitleEncoder.cs | ||
| JobLogger.cs | ||
| MediaEncoderHelpers.cs | ||
| MediaInfoRequest.cs | ||
| TranscodingJobType.cs | ||