Re: [exec] Update from Java 5 to 6

2019-10-13 Thread Luis Panadero Guardeño
El 10/10/19 a las 12:50, sebb escribió: > Please explain what you mean. > > Are you saying that code compiled with Java 5 will not run on Java 12+ ? > Is not, why not? Have you try to use JAI on OpenJDK 8 or Java 11/12/13 ? You will find that reading/writing images fails, because it's using some

Re: [beanutils] Towards 2.0?

2019-10-13 Thread Gary Gregory
I think we had talked in the past about not letting Commons Collections APIs "leak" out of the BeanUtils API. Gary On Sun, Oct 13, 2019, 20:16 Rob Tompkins wrote: > Curious if anyone has any thoughts here on what needs to be done as we > work towards a 2.0 for beanutils…..does anyone else want

[beanutils] Towards 2.0?

2019-10-13 Thread Rob Tompkins
Curious if anyone has any thoughts here on what needs to be done as we work towards a 2.0 for beanutils…..does anyone else want to get anything in. I know that there’s considerable demand for it out there. Cheers, -Rob - To unsu

Re: [collections] BloomFilter or BitSet functions?

2019-10-13 Thread Gilles Sadowski
Hello. Le dim. 13 oct. 2019 à 21:49, Claude Warren a écrit : > > I did some work on the BloomFiltersFunction idea and found that moving the > hamming distance and approximate log methods out of the BloomFilter > interface made implementation much easier and cleaner. In fact, all the > calls in m

Re: [collections] BloomFilter or BitSet functions?

2019-10-13 Thread Claude Warren
I did some work on the BloomFiltersFunction idea and found that moving the hamming distance and approximate log methods out of the BloomFilter interface made implementation much easier and cleaner. In fact, all the calls in my code that is utilizing the proposed contribution got simpler. I now fir