Skip to content

Commit

Permalink
Whoops
Browse files Browse the repository at this point in the history
Removed unnecessary parenthesis
  • Loading branch information
Ryan Layne authored and Ryan Layne committed Feb 6, 2012
1 parent 444d618 commit fb7358c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion JapanPostBarcode.m
Expand Up @@ -182,7 +182,7 @@ - (void)generateChecksum
}
}
cd = 19 * (checkValue / 19 + 1) - checkValue;
if ((10 > cd))
if (10 > cd)
character = '0' + cd;
else {
if (10 == cd)
Expand Down

0 comments on commit fb7358c

Please sign in to comment.