spelling: component

Signed-off-by: Josh Soref <[email protected]>
This commit is contained in:
Josh Soref
2024-10-29 16:55:43 +01:00
committed by Jindra Petřík
parent 49621808ea
commit a0a4bde470
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -604,8 +604,8 @@ public class View {
TreePath path = tree.getPathForRow(i);
if (tree.isExpanded(path)) {
List<String> pathAsStringList = new ArrayList<>();
for (Object pathCompnent : path.getPath()) {
pathAsStringList.add(pathCompnent.toString());
for (Object pathComponent : path.getPath()) {
pathAsStringList.add(pathComponent.toString());
}
expandedNodes.add(pathAsStringList);
}