1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-09-27 18:19:34 +02:00

Only keep most recent signatures for datum in CertificationSet

This commit is contained in:
Paul Schaub 2023-07-05 17:05:41 +02:00
parent 73708f4a6f
commit 85b5624499
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311

View file

@ -77,6 +77,7 @@ class CertificationSet(
/**
* Add a single [Certification] into this objects [certifications].
* If there are already some [Cer]
*
* @param certification [Certification] with the same issuer fingerprint and target fingerprint as this object.
*/
@ -89,7 +90,18 @@ class CertificationSet(
certificationsForUserId = ArrayList()
_certifications[certification.userId] = certificationsForUserId
}
if (certificationsForUserId.isEmpty()) {
certificationsForUserId.add(certification)
return
}
val existing = certificationsForUserId[0]
if (existing.creationTime.before(certification.creationTime)) {
certificationsForUserId.clear() // throw away older certifications
certificationsForUserId.add(certification)
}
// else this certification is older, so ignore
}
override fun toString(): String {