Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Anthony Dahanne <[email protected]>
  • Loading branch information
pivotal-david-osullivan and anthonydahanne authored Oct 12, 2023
1 parent d953983 commit d710958
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion actions/gradle-dependency/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func main() {
o, err := actions.NewOutputs(versions[latestVersion.Original()], latestVersion, latestSource)
if err != nil {
panic(err)
}else {
} else {
o.Write()
}
}
Expand Down
2 changes: 1 addition & 1 deletion actions/leiningen-dependency/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func main() {
o, err := actions.NewOutputs(versions[latestVersion.Original()], latestVersion, latestSource)
if err != nil {
panic(err)
}else {
} else {
o.Write()
}
}
2 changes: 1 addition & 1 deletion actions/npm-dependency/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ func main() {
o, err := actions.NewOutputs(versions[latestVersion.Original()], latestVersion, latestSource)
if err != nil {
panic(err)
}else {
} else {
o.Write()
}
}
Expand Down

0 comments on commit d710958

Please sign in to comment.