Check if a change exists. # Arguments `hash` - The content hash of the change # Returns `true` if the change exists in the store.
(&self, hash: &Hash)
| 115 | /// |
| 116 | /// `true` if the change exists in the store. |
| 117 | fn has_change(&self, hash: &Hash) -> bool { |
| 118 | self.get_change(hash).is_ok() |
| 119 | } |
| 120 | |
| 121 | /// Check if a change has content bytes. |
| 122 | /// |
nothing calls this directly
no test coverage detected