Remove redundant nullability checks
This commit is contained in:
parent
70b0bef245
commit
e4bbc05ede
@ -219,7 +219,7 @@ public class RegularShopBase
|
|||||||
|
|
||||||
if (item->ItemId == itemId)
|
if (item->ItemId == itemId)
|
||||||
{
|
{
|
||||||
max += (999 - (int)item->Quantity);
|
max += (999 - item->Quantity);
|
||||||
if (max >= 99)
|
if (max >= 99)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -247,7 +247,7 @@ public class RegularShopBase
|
|||||||
if (item == null || item->ItemId == 0)
|
if (item == null || item->ItemId == 0)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (item->ItemId == itemId && predicate((int)item->Quantity))
|
if (item->ItemId == itemId && predicate(item->Quantity))
|
||||||
++count;
|
++count;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user