mirror of
https://github.com/matrix-org/matrix-rust-sdk.git
synced 2026-05-05 06:28:20 -04:00
review: remove useless Result in FFI layer too (thanks hywan!)
Signed-off-by: Benjamin Bouvier <public@benj.me>
This commit is contained in:
@@ -484,9 +484,9 @@ impl SlidingSyncListBuilder {
|
||||
Arc::new(builder)
|
||||
}
|
||||
|
||||
pub fn build(self: Arc<Self>) -> Result<Arc<SlidingSyncList>, ClientError> {
|
||||
pub fn build(self: Arc<Self>) -> Arc<SlidingSyncList> {
|
||||
let builder = unwrap_or_clone_arc(self);
|
||||
Ok(Arc::new(builder.inner.build().into()))
|
||||
Arc::new(builder.inner.build().into())
|
||||
}
|
||||
|
||||
pub fn sort(self: Arc<Self>, sort: Vec<String>) -> Arc<Self> {
|
||||
|
||||
Reference in New Issue
Block a user