Other(refactor): Linter fixes

This commit is contained in:
James Houlahan
2022-08-19 11:21:59 +02:00
committed by Jakub
parent ee5a126c1c
commit c49c296d2b

View File

@ -1,13 +1,13 @@
package bridge
func (bridge *Bridge) ProvideLogsPath() (string, error) {
return bridge.locations.ProvideLogsPath()
func (b *Bridge) ProvideLogsPath() (string, error) {
return b.locations.ProvideLogsPath()
}
func (bridge *Bridge) GetLicenseFilePath() string {
return bridge.locations.GetLicenseFilePath()
func (b *Bridge) GetLicenseFilePath() string {
return b.locations.GetLicenseFilePath()
}
func (bridge *Bridge) GetDependencyLicensesLink() string {
return bridge.locations.GetDependencyLicensesLink()
func (b *Bridge) GetDependencyLicensesLink() string {
return b.locations.GetDependencyLicensesLink()
}