public class MyBean
{
BigDecimal amount
}
Other (Java) classes reference that property.
myBean.getAmount().doubleValue()
With today's update, I am now getting an error "The type BigDecimal is not visible".
Groovy compiler level is 2.4 (same problem at 2.3).
I am using Eclipse Neon 4.6.2. I'm updating Groovy Eclipse from http://dist.springsource.org/snapshot/GRECLIPSE/e4.6/. I'm using Java 8_121. I have a mixed Java/Groovy project. I have Groovy beans that have BigDecimal properties:
Other (Java) classes reference that property.
myBean.getAmount().doubleValue()With today's update, I am now getting an error "The type BigDecimal is not visible".
Groovy compiler level is 2.4 (same problem at 2.3).