-
Type:
Bug
-
Status: Closed
-
Resolution: Fixed
-
Affects Version/s: 7.0.1 CE GA2
-
Fix Version/s: 7.0.0 DXP FP2, 7.0.0 DXP SP1, 7.0.3 CE GA4, 7.0.0 DXP FP46, 7.0.6 CE GA7, 7.0.0 DXP SP8, 7.1.0 Beta 1, Master
-
Component/s: Core Infrastructure > Service Builder
-
Branch Version/s:7.0.x
-
Backported to Branch:Committed
-
Fix Priority:4
-
Git Pull Request:
I have an entity with 517 columns. When generating the cache model class's toString() method, the StringBundler size was created with a comma separator:
public String toString() { StringBundler sb = new StringBundler(1,037);
It should not have been number-formatted in this way as it causes a compile error about type coercion. The expected result is:
public String toString() { StringBundler sb = new StringBundler(1037);