File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
src/main/java/eu/mihosoft/vrl/v3d Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change 3333 */
3434package eu .mihosoft .vrl .v3d ;
3535
36+ import java .util .ArrayList ;
3637import java .util .HashMap ;
3738import java .util .HashSet ;
3839import java .util .Map ;
3940import java .util .Optional ;
4041import java .util .Set ;
4142
43+ import com .sun .xml .internal .bind .v2 .schemagen .xmlschema .List ;
44+
4245import javafx .scene .paint .Color ;
4346
4447/**
@@ -122,6 +125,11 @@ public void syncProperties(PropertyStorage dying) {
122125 HashSet <String > clonedSet = new HashSet <String >();
123126 clonedSet .addAll ((HashSet <String >)property );
124127 property =clonedSet ;
128+ }
129+ if (ArrayList .class .isInstance (property )) {
130+ ArrayList <String > clonedSet = new ArrayList <String >();
131+ clonedSet .addAll ((ArrayList <String >)property );
132+ property =clonedSet ;
125133 }
126134 set (o ,property );
127135 }
You can’t perform that action at this time.
0 commit comments