Commit 4df49609 authored by Rushikesh Padsala's avatar Rushikesh Padsala
Browse files

fixed import manager for building properties importer

parent 6f52a5c9
......@@ -96,8 +96,10 @@ public class ImportManager implements ADEImportManager {
getImporter(CityObjectPropertiesImporter.class).doImport(properties, (AbstractCityObject) parent, parentId, parentType);
if (parent instanceof AbstractBuilding
&& properties.containsOneOf(QualifiedHeightProperty.class,
QualifiedAreaProperty.class, QualifiedVolumeProperty.class, RefurbishmentMeasureProperty.class))
getImporter(BuildingPropertiesImporter.class).doImport(properties,(AbstractBuilding) parent, parentId, parentType);
QualifiedAreaProperty.class, QualifiedVolumeProperty.class, RefurbishmentMeasureProperty.class,
BuildingTypeProperty.class, BuildingIsProtectedProperty.class, BuildingConstructionWeightProperty.class,
BuildingAtticThermalStatusProperty.class, BuildingBasementThermalStatusProperty.class))
getImporter(BuildingPropertiesImporter.class).doImport(properties, (AbstractBuilding) parent, parentId, parentType);
}
@Override
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment