modules/jretools/src/main/java/org/apache/harmony/jretools/keytool/CertReader.java [149:159]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private static InputStream getInputStream(String fileName)
            throws FileNotFoundException {
        if (fileName != null) {
            sleepPeriod = 0;
            // use the file if its name is specified
            return new FileInputStream(fileName);
        } else {// if the file name is not given, use stdin
            sleepPeriod = 3000;
            return System.in;
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



modules/jdktools/src/main/java/org/apache/harmony/tools/keytool/CertReader.java [149:159]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private static InputStream getInputStream(String fileName)
            throws FileNotFoundException {
        if (fileName != null) {
            sleepPeriod = 0;
            // use the file if its name is specified
            return new FileInputStream(fileName);
        } else {// if the file name is not given, use stdin
            sleepPeriod = 3000;
            return System.in;
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



