Skip to content

Commit

Permalink
moved function
Browse files Browse the repository at this point in the history
  • Loading branch information
mtgag committed Jun 24, 2024
1 parent 03ba718 commit 3d30cf8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 22 deletions.
22 changes: 0 additions & 22 deletions v3/util/misc.go

This file was deleted.

7 changes: 7 additions & 0 deletions v3/util/qc_stmt.go
Original file line number Diff line number Diff line change
Expand Up @@ -522,3 +522,10 @@ func handleIdEtsiQcsQcCompliance(statem qcStatementWithInfoField, raw anyContent
"invalid format of ETSI Complicance statement"))
return etsiObj
}

func AppendToStringSemicolonDelim(this *string, s string) {
if len(*this) > 0 && len(s) > 0 {
(*this) += "; "
}
(*this) += s
}

0 comments on commit 3d30cf8

Please sign in to comment.