Fixed
Pinned fields
Click on the next to a field label to start pinning.
Details
Assignee
Luis MajanoLuis MajanoReporter
John WhishJohn WhishFix versions
Priority
Major
Details
Details
Assignee
Luis Majano
Luis MajanoReporter
John Whish
John WhishFix versions
Priority
Sentry
Sentry
Sentry
Created August 15, 2024 at 7:58 PM
Updated August 23, 2024 at 12:49 PM
Resolved August 16, 2024 at 3:06 PM
In the docs there is this example (I’ve cut it down slightly to just show the issue)
import java.math.BigInteger a = BigInteger.valueOf( 54 ) result = a.add( 444 )
https://boxlang.ortusbooks.com/boxlang-language/program-structure#simple-imports
Which errors with
Error getting method add for class java.math.BigInteger
This is not surprising as
444
is anInteger
datatype and theadd
method ofBigInteger
expects aBigInteger
Raising the ticket as it’s in the docs as:
Maybe it did work once and has regressed?
Could it be made to work?
The docs are wrong and should be updated?