suppress mutable warnings for primitive arrays (we don't wanna wrap those)

This commit is contained in:
Vincent Breitmoser
2017-05-23 14:15:58 +02:00
parent d58f1bd225
commit c4a4fdadff
7 changed files with 9 additions and 0 deletions

View File

@@ -44,6 +44,7 @@ public abstract class ParcelableS2K implements Parcelable {
abstract int getS2kType();
abstract int getS2kHashAlgo();
abstract long getS2kItCount();
@SuppressWarnings("mutable")
abstract byte[] getS2kIV();
@Memoized

View File

@@ -40,6 +40,7 @@ public abstract class PgpSignEncryptData implements Parcelable {
@Nullable
public abstract Passphrase getSymmetricPassphrase();
@Nullable
@SuppressWarnings("mutable")
public abstract long[] getEncryptionMasterKeyIds();
public abstract int getCompressionAlgorithm();
@Nullable