[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] 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.

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

2020-08-19 Thread Christian Beikov
Hey Nathan, I like the idea in general and but you have to be careful with changing this as I assume this was done to save memory by creating the list, only when at least one element would be added to the list. I guess if we always initialize the list, we'd have to do something like the