(&self)
| 181 | |
| 182 | impl DirtyPlan { |
| 183 | fn is_empty(&self) -> bool { |
| 184 | !self.dirty |
| 185 | && self.branches.is_empty() |
| 186 | && self.new_worktrees.is_empty() |
| 187 | && !self.gc_eligible |
| 188 | } |
| 189 | } |
| 190 | |
| 191 | /// The daemon-held git-metadata watcher. Cheap to clone (all `Arc` inside), and |
no outgoing calls
no test coverage detected