Home
last modified time | relevance | path

Searched refs:signatures2 (Results 1 – 1 of 1) sorted by relevance

/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowPackageManager.java205 static int compareSignature(Signature[] signatures1, Signature[] signatures2) { in compareSignature() argument
207 return (signatures2 == null) ? SIGNATURE_NEITHER_SIGNED : SIGNATURE_FIRST_NOT_SIGNED; in compareSignature()
209 if (signatures2 == null) { in compareSignature()
212 if (signatures1.length != signatures2.length) { in compareSignature()
216 HashSet<Signature> signatures2set = new HashSet<>(asList(signatures2)); in compareSignature()