Skip to content

Commit

Permalink
fix unexpected white space changes
Browse files Browse the repository at this point in the history
  • Loading branch information
elrayle committed Jun 4, 2024
1 parent 3e3bfc5 commit b48a218
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions cmd/exceptions.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ func extractExceptionLicenseIDs() error {
// generate the GetExceptions() function in get_exceptions.go
getExceptionsContents := []byte(`package spdxlicenses
func GetExceptions() []string {
return []string{
`)
func GetExceptions() []string {
return []string{
`)
for _, id := range exceptionLicenseIDs {
getExceptionsContents = append(getExceptionsContents, ` "`+id+`",
`...)
Expand Down
12 changes: 6 additions & 6 deletions cmd/license.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ func extractLicenseIDs() error {
// generate the GetLicenses() function in get_licenses.go
getLicensesContents := []byte(`package spdxlicenses
func GetLicenses() []string {
return []string{
`)
func GetLicenses() []string {
return []string{
`)
for _, id := range activeLicenseIDs {
getLicensesContents = append(getLicensesContents, ` "`+id+`",
`...)
Expand All @@ -76,9 +76,9 @@ func extractLicenseIDs() error {
// generate the GetDeprecated() function in get_deprecated.go
getDeprecatedContents := []byte(`package spdxlicenses
func GetDeprecated() []string {
return []string{
`)
func GetDeprecated() []string {
return []string{
`)
for _, id := range deprecatedLicenseIDs {
getDeprecatedContents = append(getDeprecatedContents, ` "`+id+`",
`...)
Expand Down

0 comments on commit b48a218

Please sign in to comment.