aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/gorilla/mux/context_native.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/gorilla/mux/context_native.go')
-rw-r--r--vendor/github.com/gorilla/mux/context_native.go24
1 files changed, 0 insertions, 24 deletions
diff --git a/vendor/github.com/gorilla/mux/context_native.go b/vendor/github.com/gorilla/mux/context_native.go
deleted file mode 100644
index 209cbea..0000000
--- a/vendor/github.com/gorilla/mux/context_native.go
+++ /dev/null
@@ -1,24 +0,0 @@
-// +build go1.7
-
-package mux
-
-import (
- "context"
- "net/http"
-)
-
-func contextGet(r *http.Request, key interface{}) interface{} {
- return r.Context().Value(key)
-}
-
-func contextSet(r *http.Request, key, val interface{}) *http.Request {
- if val == nil {
- return r
- }
-
- return r.WithContext(context.WithValue(r.Context(), key, val))
-}
-
-func contextClear(r *http.Request) {
- return
-}