mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-23 22:25:09 -04:00
Replaced built-in valuetypes with language keywords.
This commit is contained in:
@@ -287,7 +287,7 @@ namespace NzbDrone.Core.Parser
|
||||
return result;
|
||||
}
|
||||
|
||||
private static Resolution ParseResolution(String name)
|
||||
private static Resolution ParseResolution(string name)
|
||||
{
|
||||
var match = ResolutionRegex.Match(name);
|
||||
|
||||
@@ -300,7 +300,7 @@ namespace NzbDrone.Core.Parser
|
||||
return Resolution.Unknown;
|
||||
}
|
||||
|
||||
private static Quality OtherSourceMatch(String name)
|
||||
private static Quality OtherSourceMatch(string name)
|
||||
{
|
||||
var match = OtherSourceRegex.Match(name);
|
||||
|
||||
@@ -311,7 +311,7 @@ namespace NzbDrone.Core.Parser
|
||||
return Quality.Unknown;
|
||||
}
|
||||
|
||||
private static QualityModel ParseQualityModifiers(String normalizedName)
|
||||
private static QualityModel ParseQualityModifiers(string normalizedName)
|
||||
{
|
||||
var result = new QualityModel { Quality = Quality.Unknown };
|
||||
|
||||
|
||||
Reference in New Issue
Block a user