Hello everybody,
I want know if the feature "between" in NumberUtils lib has be discussed? I
use this methods a lot and i would like to share this code in apache
commons.
Below i share a example:
[image: Inline image 1]
Thanks.
Lucas Carvalho
Hi.
On Fri, 29 Dec 2017 09:51:59 -0200, Lucas Carvalho wrote:
Hello everybody,
I want know if the feature "between" in NumberUtils lib has be
discussed? I
use this methods a lot and i would like to share this code in apache
commons.
Below i share a example:
[image: Inline image 1]
All I c
I`m sorry,
Now code in "text":
public static boolean between(final int value, final int x, final int y) {
return value >= x && value <= y;
}
public static boolean between(final short value, final short x, final short
y) {
return value >= x && value <= y;
}
Obrigado.
Atenciosamente
Hi.
On Fri, 29 Dec 2017 11:53:29 -0200, Lucas Carvalho wrote:
I`m sorry,
Now code in "text":
public static boolean between(final int value, final int x, final int
y) {
return value >= x && value <= y;
}
public static boolean between(final short value, final short x, final
short
y) {
Hi All,
Does anyone want to fix some issues for 4.2? I am thinking of pushing out
an RC soon.
This is what we have so far:
Unit tests MapUtilsTest and ListIteratorWrapperTest no longer fail on
Java 9.
Intermittent test failures in Windows for HashSetValuedHashMap.
Gilles, thanks for you reply.
I will consider your sugestions.
So, can i open a issue in jira (apache commons) and implement this feature?
Thanks.
Lucas Carvalho
On Fri, Dec 29, 2017 at 12:25 PM, Gilles
wrote:
> Hi.
>
> On Fri, 29 Dec 2017 11:53:29 -0200, Lucas Carvalho wrote:
>
>> I`m sor
On Wed, Dec 27, 2017 at 11:55 AM, Gary Gregory
wrote:
> The changes for:
>
> BEANUTILS-500 Upgrade commons-collections to 4
>
> break BC (see BEANUTILS-500).
>
> Therefore, I created BEANUTILS-503: Change packaging from
> org.apache.commons.beanutils to org.apache.commons.beanutils2
>
> This chan
On Fri, 29 Dec 2017 16:19:05 -0200, Lucas Carvalho wrote:
Gilles, thanks for you reply.
I will consider your sugestions.
So, can i open a issue in jira (apache commons) and implement this
feature?
Better wait for other opinions on the various suggestions,
as it impacts on which JIRA project
With git master, I get:
ZstdCompressorInputStreamTest.testZstdDecode:59 arrays first differed at
element [70]; expected:<13> but was:<10>
Anyone else?
Gary