mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 18:47:18 -04: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);
```
		
	
			
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using MediaBrowser.Controller.Entities;
 | |
| using MediaBrowser.Controller.Sorting;
 | |
| using MediaBrowser.Model.Querying;
 | |
| 
 | |
| namespace Emby.Server.Implementations.Sorting
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Class ParentIndexNumberComparer.
 | |
|     /// </summary>
 | |
|     public class ParentIndexNumberComparer : IBaseItemComparer
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Gets the name.
 | |
|         /// </summary>
 | |
|         /// <value>The name.</value>
 | |
|         public string Name => ItemSortBy.ParentIndexNumber;
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Compares the specified x.
 | |
|         /// </summary>
 | |
|         /// <param name="x">The x.</param>
 | |
|         /// <param name="y">The y.</param>
 | |
|         /// <returns>System.Int32.</returns>
 | |
|         public int Compare(BaseItem? x, BaseItem? y)
 | |
|         {
 | |
|             ArgumentNullException.ThrowIfNull(x);
 | |
| 
 | |
|             ArgumentNullException.ThrowIfNull(y);
 | |
| 
 | |
|             if (!x.ParentIndexNumber.HasValue && !y.ParentIndexNumber.HasValue)
 | |
|             {
 | |
|                 return 0;
 | |
|             }
 | |
| 
 | |
|             if (!x.ParentIndexNumber.HasValue)
 | |
|             {
 | |
|                 return -1;
 | |
|             }
 | |
| 
 | |
|             if (!y.ParentIndexNumber.HasValue)
 | |
|             {
 | |
|                 return 1;
 | |
|             }
 | |
| 
 | |
|             return x.ParentIndexNumber.Value.CompareTo(y.ParentIndexNumber.Value);
 | |
|         }
 | |
|     }
 | |
| }
 |