Fix bogus return statement in PixmapRecorder.close()

This commit is contained in:
Elias Batek 2024-08-18 01:16:48 +02:00
parent b6e54b8b85
commit 2f32267898
1 changed files with 1 additions and 1 deletions

View File

@ -396,7 +396,7 @@ final class PixmapRecorder {
+/
int close() {
if (!this.isOpen) {
return;
return 0;
}
_input.writeEnd.flush();