Fixed DottedChain.PathPart NoSerializable exception

This commit is contained in:
Jindra Petřík
2023-01-27 18:19:23 +01:00
parent b1cf6f41fc
commit ae1a300fb3
2 changed files with 2 additions and 1 deletions

View File

@@ -347,7 +347,7 @@ public class DottedChain implements Serializable, Comparable<DottedChain> {
return toRawString().compareTo(o.toRawString());
}
private static class PathPart {
private static class PathPart implements Serializable {
public String name;
public boolean attribute;