| Age | Commit message (Collapse) | Author |
|
* Convert ItemSortBy to enum
* Rename Unknown to Default
|
|
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);
```
|
|
(cherry picked from commit 72aca1519132315a69d9dad53e4840f461e58285)
Signed-off-by: crobibero <cody@robibe.ro>
|
|
Can be used in item queries to sort by ParentIndexNumber and IndexNumber (used for disc and track numbers for example).
|