Fix missing is_empty in image::Batch

This commit is contained in:
Héctor Ramón Jiménez 2025-04-30 01:30:53 +02:00
parent 5fd2ae070e
commit 6ebf386249
No known key found for this signature in database
GPG key ID: 7CC46565708259A7

View file

@ -7,4 +7,8 @@ impl Batch {
pub fn push(&mut self, _image: Image) {}
pub fn clear(&mut self) {}
pub fn is_empty(&self) -> bool {
true
}
}