[hibernate-dev] CI environment(s)

2020-08-19 Thread Steve Ebersole
There is a discussion on https://github.com/hibernate/hibernate-orm/pull/3391 related to the use of Travis versus Jenkins for CI tests. If anyone has strong opinions please comment on the PR. Thanks! ___ hibernate-dev mailing list -- hibernate-dev@lists

[hibernate-dev] Re: Regarding lazy initialization of ArrayList

2020-08-19 Thread Sanne Grinovero
On Wed, 19 Aug 2020 at 13:48, Nathan Xu wrote: > > Thanks for the null-check tip! I appreciate that. > > As a matter of fact, NPE issue still bothers us a lot. This recent PR from > the community is another validation: > https://github.com/hibernate/hibernate-orm/pull/3499How to systematically

[hibernate-dev] Re: Regarding lazy initialization of ArrayList

2020-08-19 Thread Nathan Xu
Thanks for the null-check tip! I appreciate that. As a matter of fact, NPE issue still bothers us a lot. This recent PR from the community is another validation:  https://github.com/hibernate/hibernate-orm/pull/3499How to systematically combat NPE is a good topic and still highly relevant. Maybe

[hibernate-dev] Re: Regarding lazy initialization of ArrayList

2020-08-19 Thread Sanne Grinovero
Welcome to the list Nathan! I would be cautious in removing such lazy initialization patterns: even when the array is not immediately allocated, we still often have reasons to not want to allocate the wrapping object. While of course each such choice relates to a specific context, so this should