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
1 changed files with 3 additions and 3 deletions

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);
}
/**