Github user jaikiran commented on a diff in the pull request: https://github.com/apache/ant-ivy/pull/48#discussion_r125161935 --- Diff: src/java/org/apache/ivy/plugins/signer/bouncycastle/OpenPGPSignatureGenerator.java --- @@ -161,7 +159,7 @@ private PGPSecretKey readSecretKey(InputStream in) throws IOException, PGPExcept key = k; } if ((keyId != null) - && (Long.valueOf(keyId, 16).longValue() == (k.getKeyID() & MASK))) { + && (Long.valueOf(keyId, 16) == (k.getKeyID() & MASK))) { --- End diff -- I'm not 100% sure how Java autoboxing/unboxing deals in this case. Does it autobox the primitive to a wrapper `Long` and do a `==` check or does it do a unboxing of the `Long` to a primitive and do a `==` check?
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. --- --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@ant.apache.org For additional commands, e-mail: dev-h...@ant.apache.org