Commit 7f50a70
committed
Fix compile error: Rename duplicate 'children' variable to 'currentChildren'
The variable 'children' was declared twice in the processDynamicElements method:
- Once at the method start (line 126)
- Again inside the loop (line 157)
This caused a compilation error. Renamed the second occurrence to
'currentChildren' to avoid the conflict.1 parent bae2938 commit 7f50a70
File tree
1 file changed
+3
-3
lines changed- bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt
1 file changed
+3
-3
lines changedLines changed: 3 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
154 | 154 | | |
155 | 155 | | |
156 | 156 | | |
157 | | - | |
158 | | - | |
159 | | - | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
160 | 160 | | |
161 | 161 | | |
162 | 162 | | |
| |||
0 commit comments