get rid of some inspection warnings
This commit is contained in:
@@ -692,6 +692,7 @@ public class PgpKeyOperation {
|
||||
|
||||
private static int readMasterKeyFlags(PGPPublicKey masterKey) {
|
||||
int flags = KeyFlags.CERTIFY_OTHER;
|
||||
//noinspection unchecked
|
||||
for(PGPSignature sig : new IterableIterator<PGPSignature>(masterKey.getSignatures())) {
|
||||
if (!sig.hasSubpackets()) {
|
||||
continue;
|
||||
|
||||
@@ -12,7 +12,6 @@ import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
import java.util.Arrays;
|
||||
|
||||
/** Represent the result of an operation.
|
||||
*
|
||||
@@ -72,9 +71,6 @@ public class OperationResultParcel implements Parcelable {
|
||||
mParameters = parameters;
|
||||
mIndent = indent;
|
||||
}
|
||||
public LogEntryParcel(LogLevel level, LogType type, Object... parameters) {
|
||||
this(level, type, 0, parameters);
|
||||
}
|
||||
|
||||
public LogEntryParcel(Parcel source) {
|
||||
mLevel = LogLevel.values()[source.readInt()];
|
||||
|
||||
Reference in New Issue
Block a user