Hi,
I am fighting with align/wrap configuration for java code style. I have a following code:
return select().from(quota).where(quota.hierarchyType.eq(QuotaHierarchyType.CHILD_DEFAULT).and(quota.parentOrgItemId.eq(id.getId()))).list(quota);
I would like to have following format (I do it manually):
return select().from(quota)
.where(quota.hierarchyType.eq(QuotaHierarchyType.CHILD_DEFAULT)
.and(quota.parentOrgItemId.eq(id.getId())))
.list(quota);
But whenever I reformat that file (by idea java formatter), idea will toch also this block and reformats it to:
return select().from(quota)
.where(quota.hierarchyType.eq(QuotaHierarchyType.CHILD_DEFAULT)
.and(quota.parentOrgItemId.eq(id.getId())))
.list(quota);