From 2099ec1cd62bb936b89343afb4dc8fde4676499b Mon Sep 17 00:00:00 2001 From: Martin Smith Date: Fri, 28 Feb 2025 19:35:51 +0000 Subject: [PATCH] Remove import aliases that match package name. --- internal/fs/fs_local_vss_test.go | 2 +- internal/fs/vss_windows.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/fs/fs_local_vss_test.go b/internal/fs/fs_local_vss_test.go index b64897d1c..32f9f4cfd 100644 --- a/internal/fs/fs_local_vss_test.go +++ b/internal/fs/fs_local_vss_test.go @@ -14,7 +14,7 @@ import ( "testing" "time" - ole "github.com/go-ole/go-ole" + "github.com/go-ole/go-ole" "github.com/restic/restic/internal/options" rtest "github.com/restic/restic/internal/test" ) diff --git a/internal/fs/vss_windows.go b/internal/fs/vss_windows.go index 1cbaf82f8..dabe78fb4 100644 --- a/internal/fs/vss_windows.go +++ b/internal/fs/vss_windows.go @@ -13,7 +13,7 @@ import ( "time" "unsafe" - ole "github.com/go-ole/go-ole" + "github.com/go-ole/go-ole" "github.com/restic/restic/internal/errors" "golang.org/x/sys/windows" )