From f22289bad830476707f88c85b5f3041777fd6a0a Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 22 Oct 2024 10:31:08 -0400 Subject: [PATCH] spelling: ellipsis Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- .../exporters/script/PcodeGraphVizExporter.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/script/PcodeGraphVizExporter.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/script/PcodeGraphVizExporter.java index ef1ced0f0..19bba73a5 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/script/PcodeGraphVizExporter.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/script/PcodeGraphVizExporter.java @@ -57,7 +57,7 @@ public class PcodeGraphVizExporter { private final String BLOCK_STYLE = "shape=\"box\""; private static final int INS_LEN_LIMIT = 80; - private static final String ELIPSIS = "..."; + private static final String ELLIPSIS = "..."; private String getBlockName(GraphSource list, GraphPart part) { return "loc" + Helper.formatAddress(list.pos2adr(part.start, true)); @@ -209,17 +209,17 @@ public class PcodeGraphVizExporter { Token t; StringBuilder sb = new StringBuilder(); int lineStart = 0; - boolean afterElipsis = false; + boolean afterEllipsis = false; int rawLen = 0; try { while ((t = lexer.yylex()) != null) { if (t.type == TokenType.NEWLINE) { sb.append("
"); - afterElipsis = false; + afterEllipsis = false; lineStart = rawLen; continue; } - if (afterElipsis) { + if (afterEllipsis) { continue; } String color = null; @@ -278,8 +278,8 @@ public class PcodeGraphVizExporter { sb.append(""); } if (tooLong) { - sb.append(ELIPSIS); - afterElipsis = true; + sb.append(ELLIPSIS); + afterEllipsis = true; } } } catch (IOException ex) {