Fix char addition issue

This commit is contained in:
Arne Keller 2021-02-10 16:00:32 +01:00
parent c1ce7a9181
commit 2b237797e8

View File

@ -30,8 +30,8 @@ public class ConstraintSetIndexFactory {
String index = nextConstraintSetIndex == FIRST_CONSTRAINT_SET_INDEX
? ""
: nextConstraintSetIndex == FIRST_CONSTRAINT_SET_INDEX + 1
? UNDERSCORE + CURLY_LEFT + LET + CURLY_RIGHT
: UNDERSCORE + CURLY_LEFT + LET + UNDERSCORE
? "" + UNDERSCORE + CURLY_LEFT + LET + CURLY_RIGHT
: "" + UNDERSCORE + CURLY_LEFT + LET + UNDERSCORE
+ CURLY_LEFT + nextConstraintSetIndex + CURLY_RIGHT + CURLY_RIGHT;
nextConstraintSetIndex++;