Results 3 issues of Lennart

Intellij stopps being responsive in arbitrary situations, which can be reproduced - e.g. on changing a pipe command on a different line. Only way to recover is a `pkill -9...

Kind:Bug
Category:Performance

When a MonetaryAmount is instantiated with a scaled BigDecimal, then extracting the big decimal using `Money#getNumber` leads to a BigDecimal with unexpected scale (e.g. "-1"). Example ----------- ``` @Test void...

analysis
external

Following the example to retrieve conversion rates for a given historic point in time ``` Money .of(BigDecimal.TEN, "EUR") .with( MonetaryConversions.getConversion( ConversionQueryBuilder.of() .setTermCurrency("USD") .set(LocalDate.of(2015, 1, 5)) .build() ) ) ``` the...