Update libsignal-client to 0.14.0

This commit is contained in:
Greyson Parrelli
2022-03-14 15:49:46 -04:00
committed by Cody Henthorne
parent 749bbf428d
commit 057231b9c3
650 changed files with 2154 additions and 2384 deletions

View File

@@ -0,0 +1,11 @@
package org.signal.core.util
import java.util.Optional
fun <E> Optional<E>.or(other: Optional<E>): Optional<E> {
return if (this.isPresent) {
this
} else {
other
}
}