mirror of
https://gitlab.kit.edu/uskyk/typicalc.git
synced 2024-11-10 03:10:44 +00:00
Fix char addition issue
This commit is contained in:
parent
c1ce7a9181
commit
2b237797e8
@ -30,8 +30,8 @@ public class ConstraintSetIndexFactory {
|
|||||||
String index = nextConstraintSetIndex == FIRST_CONSTRAINT_SET_INDEX
|
String index = nextConstraintSetIndex == FIRST_CONSTRAINT_SET_INDEX
|
||||||
? ""
|
? ""
|
||||||
: nextConstraintSetIndex == FIRST_CONSTRAINT_SET_INDEX + 1
|
: nextConstraintSetIndex == FIRST_CONSTRAINT_SET_INDEX + 1
|
||||||
? UNDERSCORE + CURLY_LEFT + LET + CURLY_RIGHT
|
? "" + UNDERSCORE + CURLY_LEFT + LET + CURLY_RIGHT
|
||||||
: UNDERSCORE + CURLY_LEFT + LET + UNDERSCORE
|
: "" + UNDERSCORE + CURLY_LEFT + LET + UNDERSCORE
|
||||||
+ CURLY_LEFT + nextConstraintSetIndex + CURLY_RIGHT + CURLY_RIGHT;
|
+ CURLY_LEFT + nextConstraintSetIndex + CURLY_RIGHT + CURLY_RIGHT;
|
||||||
|
|
||||||
nextConstraintSetIndex++;
|
nextConstraintSetIndex++;
|
||||||
|
Loading…
Reference in New Issue
Block a user