Removing unused SubkeyChange constructor.

This commit is contained in:
Joey Castillo
2015-05-13 17:17:10 -04:00
parent aa75534e5b
commit 2d3f745c36
2 changed files with 4 additions and 36 deletions

View File

@@ -164,18 +164,6 @@ public class SaveKeyringParcel implements Parcelable {
mExpiry = expiry;
}
public SubkeyChange(long keyId, boolean dummyStrip, byte[] dummyDivert) {
this(keyId, null, null);
// these flags are mutually exclusive!
if (dummyStrip && dummyDivert != null) {
throw new AssertionError(
"cannot set strip and divert flags at the same time - this is a bug!");
}
mDummyStrip = dummyStrip;
mDummyDivert = dummyDivert;
}
public SubkeyChange(long keyId, boolean dummyStrip, boolean moveKeyToCard) {
this(keyId, null, null);