| 509 | } |
| 510 | |
| 511 | static struct commit_graph *load_commit_graph_v1(struct odb_source *source) |
| 512 | { |
| 513 | char *graph_name = get_commit_graph_filename(source); |
| 514 | struct commit_graph *g = load_commit_graph_one(source, graph_name); |
| 515 | free(graph_name); |
| 516 | |
| 517 | return g; |
| 518 | } |
| 519 | |
| 520 | /* |
| 521 | * returns 1 if and only if all graphs in the chain have |
no test coverage detected