Commit 2c0bfb76 authored by Stephane Nicoll's avatar Stephane Nicoll

Merge branch '2.3.x' into 2.4.x

Closes gh-24578
parents af67e6fa 4a3ce0c9
......@@ -108,6 +108,7 @@ public final class MeterValue {
* Return a new {@link MeterValue} instance for the given double value.
* @param value the source value
* @return a {@link MeterValue} instance
* @since 2.3.0
*/
public static MeterValue valueOf(double value) {
return new MeterValue(value);
......@@ -115,9 +116,9 @@ public final class MeterValue {
private static Double safeParseDouble(String value) {
try {
return Double.parseDouble(value);
return Double.valueOf(value);
}
catch (NumberFormatException nfe) {
catch (NumberFormatException ex) {
return null;
}
}
......
......@@ -42,8 +42,8 @@ class MeterValueTests {
@Test
void getValueForDistributionSummaryWhenFromNumberStringShouldReturnDoubleValue() {
MeterValue meterValue = MeterValue.valueOf("123");
assertThat(meterValue.getValue(Type.DISTRIBUTION_SUMMARY)).isEqualTo(123);
MeterValue meterValue = MeterValue.valueOf("123.42");
assertThat(meterValue.getValue(Type.DISTRIBUTION_SUMMARY)).isEqualTo(123.42);
}
@Test
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment