From: Roland Häder Date: Wed, 25 May 2016 10:22:20 +0000 (+0200) Subject: no shortening, makes code more unclear X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=94ab1ebfe29b9525c3715b09539a37e0eec46768;p=jcustomer-core.git no shortening, makes code more unclear --- diff --git a/src/org/mxchange/jcustomercore/utils/CustomerUtils.java b/src/org/mxchange/jcustomercore/utils/CustomerUtils.java index 1681d8a..1d24c0b 100644 --- a/src/org/mxchange/jcustomercore/utils/CustomerUtils.java +++ b/src/org/mxchange/jcustomercore/utils/CustomerUtils.java @@ -66,7 +66,7 @@ public class CustomerUtils { // Calculate total blockas long totalBlocks = Math.round(totalLength / (blockSize - 1) - 0.5) - 1; - // Generate CN + // Generate customer number for (int i = 0; i < totalBlocks; i++) { // Fill it up with leading zeros and append it + separator character customerNumber.append(genrateBlock(blockSize)).append(separator);