Print a message when there are no changes.
(&self)
| 18 | impl Diff { |
| 19 | /// Print a message when there are no changes. |
| 20 | pub(super) fn print_no_changes(&self) { |
| 21 | print_info("No changes detected"); |
| 22 | } |
| 23 | |
| 24 | /// Show the diff for a specific change by hash or prefix. |
| 25 | /// |
no test coverage detected