diff options
| author | 2026-03-28 18:25:33 +0000 | |
|---|---|---|
| committer | 2026-03-28 18:25:33 +0000 | |
| commit | e83415f732e6f1989587ce382eeca8cdcaff265c (patch) | |
| tree | d211778f215d8151bc665f6facc83930e8b08ab0 /repository/commit_graph.go | |
| parent | reachability, repository: MT-Safe reachability (diff) | |
| signature | No signature | |
*: Fix lints
Diffstat (limited to 'repository/commit_graph.go')
| -rw-r--r-- | repository/commit_graph.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/repository/commit_graph.go b/repository/commit_graph.go index b45d9da0..3f0a0888 100644 --- a/repository/commit_graph.go +++ b/repository/commit_graph.go @@ -20,7 +20,7 @@ func openCommitGraph(root *os.Root, algo objectid.Algorithm) (*commitgraphread.R malformed.Reason == "missing commit-graph-chain" { reader, err = commitgraphread.Open(root, algo, commitgraphread.OpenSingle) if errors.Is(err, os.ErrNotExist) { - return nil, nil + return nil, nil //nolint:nilnil } return reader, err |
