modules/jretools/src/main/java/org/apache/harmony/jretools/keytool/CertImporter.java [114:125]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private static void importReply(KeytoolParameters param,
            Collection<X509Certificate> certCollection)
            throws FileNotFoundException, CertificateException, IOException,
            KeyStoreException, NoSuchAlgorithmException,
            UnrecoverableKeyException, CertPathBuilderException,
            KeytoolException, NoSuchProviderException {
        if (certCollection.size() == 1) {
            importSingleX509Reply(param, certCollection.iterator().next());
        } else if (certCollection.size() > 0) {
            importCertChain(param, certCollection);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



modules/jdktools/src/main/java/org/apache/harmony/tools/keytool/CertImporter.java [114:125]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private static void importReply(KeytoolParameters param,
            Collection<X509Certificate> certCollection)
            throws FileNotFoundException, CertificateException, IOException,
            KeyStoreException, NoSuchAlgorithmException,
            UnrecoverableKeyException, CertPathBuilderException,
            KeytoolException, NoSuchProviderException {
        if (certCollection.size() == 1) {
            importSingleX509Reply(param, certCollection.iterator().next());
        } else if (certCollection.size() > 0) {
            importCertChain(param, certCollection);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



