1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-11-17 18:02:05 +01:00

Rename inspectionDate to referenceTime

This commit is contained in:
Paul Schaub 2022-09-03 13:48:02 +02:00
parent 7189516dd4
commit 3cd5a95d89
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311

View file

@ -163,11 +163,11 @@ public final class PGPainless {
* This method can be used to determine expiration dates, key flags and other information about a key at a specific time.
*
* @param keyRing key ring
* @param inspectionDate date of inspection
* @param referenceTime date of inspection
* @return access object
*/
public static KeyRingInfo inspectKeyRing(PGPKeyRing keyRing, Date inspectionDate) {
return new KeyRingInfo(keyRing, inspectionDate);
public static KeyRingInfo inspectKeyRing(PGPKeyRing keyRing, Date referenceTime) {
return new KeyRingInfo(keyRing, referenceTime);
}
/**