Browse code

pkg/useragent: remove // import comments

These comments were added to enforce using the correct import path for
our packages ("github.com/docker/docker", not "github.com/moby/moby").
However, when working in go module mode (not GOPATH / vendor), they have
no effect, so their impact is limited.

Remove these imports in preparation of migrating our code to become an
actual go module.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

Sebastiaan van Stijn authored on 2025/05/30 19:55:10
Showing 2 changed files
... ...
@@ -1,6 +1,6 @@
1 1
 // Package useragent provides helper functions to pack
2 2
 // version information into a single User-Agent header.
3
-package useragent // import "github.com/docker/docker/pkg/useragent"
3
+package useragent
4 4
 
5 5
 import (
6 6
 	"strings"
... ...
@@ -1,4 +1,4 @@
1
-package useragent // import "github.com/docker/docker/pkg/useragent"
1
+package useragent
2 2
 
3 3
 import "testing"
4 4