summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastiaan van Stijn <github@gone.nl>2023-05-06 01:48:16 +0200
committerSebastiaan van Stijn <github@gone.nl>2023-05-06 16:36:16 +0200
commit7d0488b11e919160709fa68161a54bc93365c3bd (patch)
treef14feed34e1d59e98b72b54af985244f10abfdde
parent152c482fee2850e6439a25567ba18d1315a68119 (diff)
downloaddocker-7d0488b11e919160709fa68161a54bc93365c3bd.tar.gz
pkg/ioutils: remove deprecated TempDir() alias
This function was deprecated in c63ea32a1780bfd063c2a6bc5dcaefe4026f27e9, which is part of the v24.0.0 release, so we can remove it from master. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
-rw-r--r--pkg/ioutils/tempdir_deprecated.go10
1 files changed, 0 insertions, 10 deletions
diff --git a/pkg/ioutils/tempdir_deprecated.go b/pkg/ioutils/tempdir_deprecated.go
deleted file mode 100644
index b3321602c2..0000000000
--- a/pkg/ioutils/tempdir_deprecated.go
+++ /dev/null
@@ -1,10 +0,0 @@
-package ioutils
-
-import "github.com/docker/docker/pkg/longpath"
-
-// TempDir is the equivalent of [os.MkdirTemp], except that on Windows
-// the result is in Windows longpath format. On Unix systems it is
-// equivalent to [os.MkdirTemp].
-//
-// Deprecated: use [longpath.MkdirTemp].
-var TempDir = longpath.MkdirTemp