diff options
| author | 2026-03-29 15:46:44 +0000 | |
|---|---|---|
| committer | 2026-03-29 15:46:44 +0000 | |
| commit | 65242328262d4a4ad611951deeef7b2d721cc05d (patch) | |
| tree | bf7461edc800546c5cdef57ff2237960ee57d58c | |
| parent | *: Remove Close from object/ref store interfaces (diff) | |
| signature | No signature | |
*: Audit labels v0.1.147
| -rw-r--r-- | object/fetch/treefs_new.go | 2 | ||||
| -rw-r--r-- | repository/commit_queries.go | 2 | ||||
| -rw-r--r-- | repository/fetcher.go | 2 | ||||
| -rw-r--r-- | repository/reachability.go | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/object/fetch/treefs_new.go b/object/fetch/treefs_new.go index e8a25dc9..f1096a3c 100644 --- a/object/fetch/treefs_new.go +++ b/object/fetch/treefs_new.go @@ -5,7 +5,7 @@ import objectid "codeberg.org/lindenii/furgit/object/id" // TreeFS returns a new filesystem view rooted at root, which may be any // tree-ish object accepted by PeelToTreeID. // -// Labels: Deps-Borrowed, Life-Parent, Close-No. +// Labels: Deps-Borrowed, Life-Parent. func (r *Fetcher) TreeFS(root objectid.ObjectID) (*TreeFS, error) { rootTree, err := r.PeelToTreeID(root) if err != nil { diff --git a/repository/commit_queries.go b/repository/commit_queries.go index 1377fd96..bd004418 100644 --- a/repository/commit_queries.go +++ b/repository/commit_queries.go @@ -7,7 +7,7 @@ import "codeberg.org/lindenii/furgit/commitquery" // // Use CommitQueries for ancestor checks and merge-base computation. // -// Labels: Life-Parent, Close-No. +// Labels: Life-Parent. func (repo *Repository) CommitQueries() *commitquery.Queries { return repo.commitQueries } diff --git a/repository/fetcher.go b/repository/fetcher.go index ae3b9a7d..9cb0133c 100644 --- a/repository/fetcher.go +++ b/repository/fetcher.go @@ -8,7 +8,7 @@ import "codeberg.org/lindenii/furgit/object/fetch" // need to peel through annotated tags, or when you want path-based access // within trees. // -// Labels: Life-Parent, Close-No. +// Labels: Life-Parent. func (repo *Repository) Fetcher() *fetch.Fetcher { return repo.fetcher } diff --git a/repository/reachability.go b/repository/reachability.go index 24f9e2bd..0e1bf682 100644 --- a/repository/reachability.go +++ b/repository/reachability.go @@ -8,7 +8,7 @@ import "codeberg.org/lindenii/furgit/reachability" // Use Reachability to walk reachable commits or objects and to perform // connectivity checks. // -// Labels: Life-Parent, Close-No. +// Labels: Life-Parent. func (repo *Repository) Reachability() *reachability.Reachability { return reachability.New(repo.objects, repo.commitGraph) } |
