Closed meshpaul closed 3 months ago
Initially, I thought it is caused by the way we generate expressions when compiling JRXML. But after looking into it, I realised it is not the case. The warning is caused by the use of a deprecated Boolean constructor in one of the expressions inside your JRXML. The solution is to revisit your JRXML and replace it with Boolean.valueOf.
I hope this helps. Teodor
The warning is coming from the Java compiler and is coming from the JDK, which deprecated that Boolean constructor. The long term fix you are looking for is in the Javadoc: https://docs.oracle.com/javase%2F9%2Fdocs%2Fapi%2F%2F/java/lang/Boolean.html#Boolean-boolean-
I hope this helps. Teodor
Hi,
I see the following deprecation warnings
What is new long term fix moving forward?
Thank you