Details
-
Bug
-
Status: Closed
-
Resolution: Fixed
-
7.0.1 CE GA2
-
7.0.x
-
Committed
-
4
Description
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);