Skip to content

Commit

Permalink
clean-up
Browse files Browse the repository at this point in the history
  • Loading branch information
jyrkioraskari committed Sep 20, 2024
1 parent 93d16b3 commit c7635b1
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion IFCtoLBD/src/license/THIRD-PARTY.properties
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@
# Please fill the missing licenses for dependencies :
#
#
#Wed Sep 18 18:43:14 CEST 2024
#Fri Sep 20 13:54:15 CEST 2024
gnu.getopt--java-getopt--1.0.13=
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,6 @@ private void addGeometry(Resource lbd_resource, String guid) {
try {

if (this.has_geometry.add(lbd_resource)) {
System.out.println("got geometry");
BoundingBox bb = this.ifc_geometry.getBoundingBox(guid);
ObjDescription obj = this.ifc_geometry.getOBJ(guid);

Expand Down Expand Up @@ -557,9 +556,6 @@ private void finish_geometry(boolean hasInterfaces) {

}
}



}
}

Expand Down Expand Up @@ -815,7 +811,7 @@ protected void handleUnitsAndPropertySetData(int props_level, boolean hasPropert
// System.out.println("Add value: "+name+" val:"+qvalue);
final_quantity_set.putPnameValue(name.get(0), qvalue);
} else
System.out.println(
System.err.println(
"qval empty " + q_value + " for: " + property_value.getObject());
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ public static void readInOntologyTTL(Model model, String ontology_file, EventBus

} catch (Exception e) {
eventBus.post(new IFCtoLBD_SystemStatusEvent("Error : " + e.getMessage()));
System.out.println("Missing file: " + ontology_file);
System.out.println("In the rare case, when you have a \"pset\" subdirectory at the current folder, \nan extra error message may be given. ");
System.err.println("Missing file: " + ontology_file);
System.err.println("In the rare case, when you have a \"pset\" subdirectory at the current folder, \nan extra error message may be given. ");
//e.printStackTrace();
}
finally {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ public void connect(Resource lbd_resource, String long_guid) {
if(!this.mapPnameValue.get(pname).toString().contains("IfcPropertySingleValue"))
to_connect.addProperty(property, this.mapPnameValue.get(pname));
else
System.out.println("Odd value: "+this.mapPnameValue.get(pname));
System.err.println("Odd value: "+this.mapPnameValue.get(pname));
}
break;
case 2:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public static void addGeolocation2BOT(Model ifcowl_model,IfcOWL ifcOWL_ns,Model
try {
wkt_point = c.addGeolocation(ifcowl_model);
} catch (Exception e) {
System.out.println("No wkt_point");
System.err.println("No wkt_point");
return; // no geolocation
}

Expand Down

0 comments on commit c7635b1

Please sign in to comment.