Index: service/rawdatastore/context.go |
diff --git a/service/rawdatastore/context.go b/service/rawdatastore/context.go |
index 431049cec8d111ec07f1ba8acc24f6b9e9f5ec7d..35216cb576509135fc2179bf4744bfb7dcb4905d 100644 |
--- a/service/rawdatastore/context.go |
+++ b/service/rawdatastore/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(rawDatastoreKey).(Factory); ok && f != nil { |
return f(c) |
} |
@@ -35,7 +35,7 @@ func GetUnfiltered(c context.Context) Interface { |
// Get gets the Interface implementation from context. |
func Get(c context.Context) Interface { |
- ret := GetUnfiltered(c) |
+ ret := getUnfiltered(c) |
if ret == nil { |
return nil |
} |