TF-1487 Apply linter rule

This commit is contained in:
dab246
2023-02-24 12:12:54 +07:00
committed by Dat Vu
parent 117a8a8fc6
commit 2b71aba278
155 changed files with 798 additions and 1039 deletions
@@ -30,8 +30,6 @@ class ComposerDataSourceImpl extends ComposerDataSource {
bytesData: fileInfo.bytes,
maxWidth: maxWidth,
compress: compress);
}).catchError((error) {
_exceptionThrower.throwException(error);
});
}).catchError(_exceptionThrower.throwException);
}
}
@@ -25,9 +25,7 @@ class ContactDataSourceImpl extends ContactDataSource {
return <DeviceContact>[];
}
}
}).catchError((error) {
_exceptionThrower.throwException(error);
});
}).catchError(_exceptionThrower.throwException);
}
List<DeviceContact> _toDeviceContact(contact_service.Contact contact) {