From 0ff0df47298887cb05e4a3e8061398df79c53f85 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 22 Oct 2024 09:29:00 -0400 Subject: [PATCH] spelling: instantiate Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/com/jpexs/decompiler/flash/gui/GenericTagTreePanel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/jpexs/decompiler/flash/gui/GenericTagTreePanel.java b/src/com/jpexs/decompiler/flash/gui/GenericTagTreePanel.java index de5f05f87..da2924f69 100644 --- a/src/com/jpexs/decompiler/flash/gui/GenericTagTreePanel.java +++ b/src/com/jpexs/decompiler/flash/gui/GenericTagTreePanel.java @@ -1222,7 +1222,7 @@ public class GenericTagTreePanel extends GenericTagPanel { if (ReflectionTools.needsIndex(field) && (fnode.index == -1)) { //Arrays or Lists try { if (field.get(fnode.obj) == null) { - // todo: instanciate the (Array)List or Array to allow adding items to it + // todo: instantiate the (Array)List or Array to allow adding items to it return 0; } } catch (IllegalArgumentException | IllegalAccessException ex) {