Merge pull request #14865 from Tithugues/feature/remove-useless-casts

Remove useless casts
This commit is contained in:
Maurício Meneghini Fauth 2019-01-13 10:28:29 -03:00 committed by GitHub
commit 536e2cd33f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -467,7 +467,7 @@ class Import
if ($num > 26) {
$div = (int) ($num / 26);
$remain = (int) ($num % 26);
$remain = $num % 26;
// subtract 1 of divided value in case the modulus is 0,
// this is necessary because A-Z has no 'zero'