[
https://issues.apache.org/jira/browse/TORQUE-97?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Thomas Fox closed TORQUE-97.
----------------------------
> Exception NoSuchMethodError when using IDBroker with Java 1.4
> -------------------------------------------------------------
>
> Key: TORQUE-97
> URL: https://issues.apache.org/jira/browse/TORQUE-97
> Project: Torque
> Issue Type: Bug
> Components: Runtime
> Affects Versions: 3.3-RC2
> Environment: Java 1.4
> Reporter: Markus Müller
> Assignee: Thomas Vandahl
> Fix For: 3.3-RC3
>
>
> I got the exception
> java.lang.NoSuchMethodError: java.math.BigDecimal.<init>(I)V
> at org.apache.torque.oid.IDBroker.getQuantity(IDBroker.java:747)
> when using Torque Runtime 3.3-RC2 with JDK 1.4.
> Java 1.5 defines additional BigDecimal constructors, one of them takes an int
> parameter.
> Java 1.4 has only a BigDecimal constructor with a double parameter.
> I presume that the Torque library was compiled with Java 1.5 causing the
> problem above.
> Probably the problem of line 747 may be solved with a cast as the following:
> quantity = new BigDecimal((double) 1);
> Line 775 of IDBroker.java may be fixed the same way:
> quantity = new BigDecimal((double) 10);
> Thanks,
> Markus
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]