Commit 97dd4c08 authored by izeye's avatar izeye Committed by Stephane Nicoll

Polish

See gh-24558
parent b82f5a40
......@@ -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