cmd: 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>
This commit is contained in:
Sebastiaan van Stijn
2025-05-30 12:28:12 +02:00
parent c6bbc3bb6e
commit d469079338
4 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
package debug // import "github.com/docker/docker/cmd/dockerd/debug"
package debug
import (
"os"

View File

@@ -1,4 +1,4 @@
package debug // import "github.com/docker/docker/cmd/dockerd/debug"
package debug
import (
"os"

View File

@@ -1,4 +1,4 @@
package trap // import "github.com/docker/docker/cmd/dockerd/trap"
package trap
import (
"context"

View File

@@ -1,6 +1,6 @@
//go:build linux
package trap // import "github.com/docker/docker/cmd/dockerd/trap"
package trap
import (
"os"