diff options
Diffstat (limited to 'reachability/reachability.go')
| -rw-r--r-- | reachability/reachability.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/reachability/reachability.go b/reachability/reachability.go index 1f12a698..6a0f2583 100644 --- a/reachability/reachability.go +++ b/reachability/reachability.go @@ -9,7 +9,7 @@ import ( // // Labels: MT-Safe. type Reachability struct { - store objectstore.ReadingStore + store objectstore.Reader graph *commitgraphread.Reader } @@ -17,6 +17,6 @@ type Reachability struct { // commit-graph reader for faster commit-domain traversal. // // Labels: Deps-Borrowed, Life-Parent. -func New(store objectstore.ReadingStore, graph *commitgraphread.Reader) *Reachability { +func New(store objectstore.Reader, graph *commitgraphread.Reader) *Reachability { return &Reachability{store: store, graph: graph} } |
