Fix the type parameter
The zk's one must be used instead of the spring's one. FEA: ItEr68S04BugFixing
This commit is contained in:
parent
cbd5f93e53
commit
14640be74a
1 changed files with 2 additions and 1 deletions
|
|
@ -170,7 +170,8 @@ public class MonteCarloController extends GenericForwardComposer {
|
|||
Rows rows = gridCriticalPathTasks.getRows();
|
||||
for (Object each : rows.getChildren()) {
|
||||
Row row = (Row) each;
|
||||
List<Component> children = row.getChildren();
|
||||
List<org.zkoss.zk.ui.Component> children = row
|
||||
.getChildren();
|
||||
|
||||
Integer sum = 0;
|
||||
intbox = (Intbox) children.get(3);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue