Skip to content

Commit 7473a24

Browse files
committed
remove unneeded comments
1 parent 6511f09 commit 7473a24

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

bindings_ffi/src/mls.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1546,7 +1546,6 @@ impl FfiConversation {
15461546

15471547
pub fn group_metadata(&self) -> Result<Arc<FfiConversationMetadata>, GenericError> {
15481548
let provider = self.inner.mls_provider()?;
1549-
// blocking is OK b/c not wasm
15501549
let metadata = tokio::task::block_in_place(|| {
15511550
futures::executor::block_on(self.inner.metadata(&provider))
15521551
})?;
@@ -1561,7 +1560,6 @@ impl FfiConversation {
15611560

15621561
pub fn conversation_type(&self) -> Result<FfiConversationType, GenericError> {
15631562
let provider = self.inner.mls_provider()?;
1564-
// blocking OK b/c not wasm
15651563
let conversation_type = tokio::task::block_in_place(|| {
15661564
futures::executor::block_on(self.inner.conversation_type(&provider))
15671565
})?;

0 commit comments

Comments
 (0)