From c49c296d2bfcbcdeb060f1dc1f88eb23cb73a9db Mon Sep 17 00:00:00 2001 From: James Houlahan Date: Fri, 19 Aug 2022 11:21:59 +0200 Subject: [PATCH] Other(refactor): Linter fixes --- internal/bridge/bridge_locations.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/internal/bridge/bridge_locations.go b/internal/bridge/bridge_locations.go index e5502ea8..7a899012 100644 --- a/internal/bridge/bridge_locations.go +++ b/internal/bridge/bridge_locations.go @@ -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() }