Index: service/memcache/context.go |
diff --git a/service/memcache/context.go b/service/memcache/context.go |
index de64a9f74e987458d185c2a8e75e9f50c1408b91..2287dd56f1cbe0abe3723151131a5172b17f6ef2 100644 |
--- a/service/memcache/context.go |
+++ b/service/memcache/context.go |
@@ -24,9 +24,9 @@ type Factory func(context.Context) Interface |
// backed by the one passed in. |
type Filter func(context.Context, Interface) Interface |
-// GetUnfiltered gets gets the Interface implementation from context without |
+// getUnfiltered gets gets the Interface implementation from context without |
// any of the filters applied. |
-func GetUnfiltered(c context.Context) Interface { |
+func getUnfiltered(c context.Context) Interface { |
if f, ok := c.Value(memcacheKey).(Factory); ok && f != nil { |
return f(c) |
} |
@@ -35,7 +35,7 @@ func GetUnfiltered(c context.Context) Interface { |
// Get gets the current memcache implementation from the context. |
func Get(c context.Context) Interface { |
- ret := GetUnfiltered(c) |
+ ret := getUnfiltered(c) |
if ret == nil { |
return nil |
} |