openpgp-ktx: fix compilation warnings

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2021-05-27 04:31:31 +05:30
parent a740cb570a
commit 52ea59275e
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
3 changed files with 6 additions and 3 deletions

View file

@ -25,6 +25,7 @@ public class AutocryptPeerUpdate() : Parcelable {
this.preferEncrypt = preferEncrypt
}
@Suppress("UNUSED_PARAMETER")
private constructor(source: Parcel, version: Int) : this() {
keyData = source.createByteArray()
effectiveDate = if (source.readInt() != 0) Date(source.readLong()) else null
@ -85,7 +86,8 @@ public class AutocryptPeerUpdate() : Parcelable {
public companion object CREATOR : Creator<AutocryptPeerUpdate> {
private const val PARCELABLE_VERSION = 1
override fun createFromParcel(source: Parcel): AutocryptPeerUpdate? {
override fun createFromParcel(source: Parcel): AutocryptPeerUpdate {
val version = source.readInt() // parcelableVersion
val parcelableSize = source.readInt()
val startPosition = source.dataPosition()
@ -95,7 +97,7 @@ public class AutocryptPeerUpdate() : Parcelable {
return vr
}
override fun newArray(size: Int): Array<AutocryptPeerUpdate?>? {
override fun newArray(size: Int): Array<AutocryptPeerUpdate?> {
return arrayOfNulls(size)
}
}

View file

@ -64,7 +64,7 @@ public object OpenPgpUtils {
if (userId.isNotEmpty()) {
val matcher = USER_ID_PATTERN.matcher(userId)
if (matcher.matches()) {
var name = if (matcher.group(1).isEmpty()) null else matcher.group(1)
var name = if (matcher.group(1)?.isEmpty() == true) null else matcher.group(1)
val comment = matcher.group(2)
var email = matcher.group(3)
if (email != null && name != null) {

View file

@ -23,6 +23,7 @@ public class OpenPgpSignatureResult : Parcelable {
private val signatureTimestamp: Date?
private val autocryptPeerentityResult: AutocryptPeerResult?
@Suppress("UNUSED_PARAMETER")
private constructor(
signatureStatus: Int,
signatureUserId: String?,