Browse code

daemon/graphdriver: remove deprecated GetDriver()

This was deprecated in 84cabde357a7b35bce100fea66657b3b520b81ce, which
was part of v28.

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

Sebastiaan van Stijn authored on 2025/07/11 08:16:46
Showing 1 changed files
... ...
@@ -121,13 +121,6 @@ func Register(name string, initFunc InitFunc) error {
121 121
 	return nil
122 122
 }
123 123
 
124
-// GetDriver initializes and returns the registered driver.
125
-//
126
-// Deprecated: this function was exported for (integration-)tests, but no longer used, and will be removed in the next release.
127
-func GetDriver(name string, config Options) (Driver, error) {
128
-	return getDriver(name, config)
129
-}
130
-
131 124
 // getDriver initializes and returns the registered driver.
132 125
 func getDriver(name string, config Options) (Driver, error) {
133 126
 	if initFunc, exists := drivers[name]; exists {