From ae1a300fb35a3e3e8b5579497c2ea61b05732f1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Fri, 27 Jan 2023 18:19:23 +0100 Subject: [PATCH] Fixed DottedChain.PathPart NoSerializable exception --- CHANGELOG.md | 1 + .../ffdec_lib/src/com/jpexs/decompiler/graph/DottedChain.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c68809417..36499da84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ All notable changes to this project will be documented in this file. - [#1948] NullPointerException on Simplify expressions on incrementent/decrement - [#1941] Export when no node is selected after SWF opening - Exception handling in cache clearing thread +- DottedChain.PathPart NoSerializable exception ## [18.3.3] - 2023-01-22 ### Added diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/graph/DottedChain.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/graph/DottedChain.java index aa4131067..f9d971281 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/graph/DottedChain.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/graph/DottedChain.java @@ -347,7 +347,7 @@ public class DottedChain implements Serializable, Comparable { return toRawString().compareTo(o.toRawString()); } - private static class PathPart { + private static class PathPart implements Serializable { public String name; public boolean attribute;