| 1378 | } |
| 1379 | |
| 1380 | void expand_loose_notes_ref(struct strbuf *sb) |
| 1381 | { |
| 1382 | struct object_id object; |
| 1383 | |
| 1384 | if (repo_get_oid(the_repository, sb->buf, &object)) { |
| 1385 | /* fallback to expand_notes_ref */ |
| 1386 | expand_notes_ref(sb); |
| 1387 | } |
| 1388 | } |
no test coverage detected