Skip to content

Commit

Permalink
Checkin Fehlschlag von IFC-Dateien bei Kommentaren in Attributen
Browse files Browse the repository at this point in the history
http://bitnami/issues/6036
  • Loading branch information
WeltWeitBau committed Aug 1, 2022
1 parent 792bd61 commit 87302aa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ private boolean processLine(String line)
*/
private String removeComments(String line) {
// remove all occurences of the pattern: /* <comment> */
return line.replaceAll("/\\*((?!\\*/).)*\\*/", "");
return line.replaceAll("/\\*((?!\\*/).)*\\*/", "").trim();
}

private String getProcessLineErrorMessage(Exception e, String value) {
Expand Down

0 comments on commit 87302aa

Please sign in to comment.