(fileName string, commitIter object.CommitIter, checkParent bool)
| 1304 | } |
| 1305 | |
| 1306 | func (*Repository) logWithFile(fileName string, commitIter object.CommitIter, checkParent bool) object.CommitIter { |
| 1307 | return object.NewCommitPathIterFromIter( |
| 1308 | func(path string) bool { |
| 1309 | return path == fileName |
| 1310 | }, |
| 1311 | commitIter, |
| 1312 | checkParent, |
| 1313 | ) |
| 1314 | } |
| 1315 | |
| 1316 | func (*Repository) logWithPathFilter(pathFilter func(string) bool, commitIter object.CommitIter, checkParent bool) object.CommitIter { |
| 1317 | return object.NewCommitPathIterFromIter( |
no test coverage detected