
| Key: |
TORQUE-103
|
| Type: |
Bug
|
| Status: |
Closed
|
| Resolution: |
Fixed
|
| Priority: |
Major
|
| Assignee: |
Unassigned
|
| Reporter: |
Jonathan Purvis
|
| Votes: |
0
|
| Watchers: |
0
|
|
If you were logged in you would be able to see more operations.
|
|
|
| Resolution Date: |
14/Oct/07 10:25 AM
|
|
line 225 of TorqueRuntimeException.java has:
return (String[]) list.toArray();
it should be:
return (String[]) list.toArray(new String[list.size()]);
Otherwise the returned array will be of type Object[] and the cast will fail at runtime.
|
|
Description
|
line 225 of TorqueRuntimeException.java has:
return (String[]) list.toArray();
it should be:
return (String[]) list.toArray(new String[list.size()]);
Otherwise the returned array will be of type Object[] and the cast will fail at runtime.
|
Show » |
made changes - 14/Oct/07 10:25 AM
| Field |
Original Value |
New Value |
|
Resolution
|
|
Fixed
[ 1
]
|
|
Fix Version/s
|
|
3.3-RC3
[ 12312398
]
|
|
Status
|
Open
[ 1
]
|
Closed
[ 6
]
|
|