remove null check

This commit is contained in:
Frede Hundewadt 2023-08-03 06:47:29 +02:00
parent 03cc959fbd
commit b449c64b8e

View file

@ -39,7 +39,7 @@ public class Ean13Validator
return number == ParsedNumber(number.Substring(0, 12));
}
private static string Ean13(int[]? firstDigits)
private static string Ean13(int[] firstDigits)
{
var summedProduct = 0;
var randomDigits = new Random();