Print file names only.
(&self, file_diffs: &[FileDiff])
| 442 | |
| 443 | /// Print file names only. |
| 444 | pub(super) fn print_name_only(&self, file_diffs: &[FileDiff]) -> CliResult<()> { |
| 445 | for file_diff in file_diffs { |
| 446 | println!("{}", file_diff.display_path()); |
| 447 | } |
| 448 | Ok(()) |
| 449 | } |
| 450 | |
| 451 | /// Print file names with status. |
| 452 | pub(super) fn print_name_status( |
no outgoing calls
no test coverage detected