Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Normal
-
Resolution: Fixed
-
Affects Version/s: 5.0.11, 6.0.1
-
Component/s: Components
-
Security Level: Jimmy
-
Labels:None
Description
Modify Tree.java
for(int i = 0; i < _model.getChildCount(node); i++) {
shall use
for(int i = 0, j = _model.getChildCount(node); i < j