From 94ab1ebfe29b9525c3715b09539a37e0eec46768 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Wed, 25 May 2016 12:22:20 +0200 Subject: [PATCH] no shortening, makes code more unclear --- src/org/mxchange/jcustomercore/utils/CustomerUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.39.5