ECKey: Missing @Nullable on priv field.

This commit is contained in:
Matthew Leon
2019-05-05 12:48:11 -04:00
committed by Andreas Schildbach
parent d13b0cfc74
commit aaf2155fa7

View File

@@ -148,7 +148,7 @@ public class ECKey implements EncryptableItem {
// The two parts of the key. If "priv" is set, "pub" can always be calculated. If "pub" is set but not "priv", we
// can only verify signatures not make them.
protected final BigInteger priv; // A field element.
@Nullable protected final BigInteger priv; // A field element.
protected final LazyECPoint pub;
// Creation time of the key in seconds since the epoch, or zero if the key was deserialized from a version that did