Method that copies properties from another object moved to the BaseObject class. Not using getProperties() to avoid creating an intermediate object that is not used later

This commit is contained in:
Michał Zielański
2020-08-27 09:18:08 +02:00
parent 8e0a61ac5f
commit 0001292a62
10 changed files with 20 additions and 19 deletions

View File

@@ -107,7 +107,7 @@ class MultiLineString extends SimpleGeometry {
this.layout,
this.ends_.slice()
);
multiLineString.importPropertiesFrom(this);
multiLineString.applyProperties(this);
return multiLineString;
}