mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-31 16:56:12 +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);
```
|
||
|---|---|---|
| .. | ||
| CustomHeaderNames.cs | ||
| INetworkManager.cs | ||
| IPHost.cs | ||
| IPNetAddress.cs | ||
| IPObject.cs | ||
| NamedClient.cs | ||
| NetworkExtensions.cs | ||