
|
If you were logged in you would be able to see more operations.
|
|
|
| Resolution Date: |
01/Jul/07 04:22 PM
|
|
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
|
|
Description
|
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
|
Show » |
made changes - 01/Jul/07 04:18 PM
| Field |
Original Value |
New Value |
|
Assignee
|
|
Thomas Vandahl
[ tv
]
|
made changes - 01/Jul/07 04:22 PM
|
Status
|
Open
[ 1
]
|
Resolved
[ 5
]
|
|
Fix Version/s
|
|
3.3-RC3
[ 12312398
]
|
|
Resolution
|
|
Fixed
[ 1
]
|
|