Sorry, I was not subscribed to the list.
On 2020/12/25 01:18:00, Gary Gregory wrote:
> There might be a lot more to consider here since this would be a major
> release. Are there breaking API changes we want to make? Are there
> deprecated APIs we want to drop?
>
> I see a lot of errors fly by
Hello Lukasz,
I would say if the maven release plugin and the maven pgp plug-ins work (on
your system and for the Pom) and the project builds on al l supported
platforms, go for it. If you have your ASF login and thenPgpg key in the Keys
file you would meet the criteria.
I am not sure about ba
Hi,
I would like to propose an enhancement to the ObjectUtils class in lang:
Background: I have seen multiple places in code where we have to check
if a value is null before using it in a setter or other method, like:
if (valueX != null) {
bean.setValue(valueX);
someObject.com