Skip to content

Commit 4b04014

Browse files
committed
chore: final cleanup before PR
Fix pre-existing struct field tag formatting in PolicyIdentifierWithQualifierEntry (comma-separated tag pairs replaced with space-separated to satisfy go vet). Relates to #27239
1 parent 476f6d1 commit 4b04014

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

sdk/helper/certutil/types.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1086,9 +1086,9 @@ func (p *KeyBundle) ToPrivateKeyPemString() (string, error) {
10861086

10871087
// PolicyIdentifierWithQualifierEntry Structure for Internal Storage
10881088
type PolicyIdentifierWithQualifierEntry struct {
1089-
PolicyIdentifierOid string `json:"oid",mapstructure:"oid"`
1090-
CPS string `json:"cps,omitempty",mapstructure:"cps"`
1091-
Notice string `json:"notice,omitempty",mapstructure:"notice"`
1089+
PolicyIdentifierOid string `json:"oid" mapstructure:"oid"`
1090+
CPS string `json:"cps,omitempty" mapstructure:"cps"`
1091+
Notice string `json:"notice,omitempty" mapstructure:"notice"`
10921092
}
10931093

10941094
// GetPolicyIdentifierFromString parses out the internal structure of a Policy Identifier

0 commit comments

Comments
 (0)