modules/jdktools/src/main/java/org/apache/harmony/tools/jar/Main.java [177:199]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                return;
            }
        }

        if (fileFlag && args.length<2) {
            // Options specify 'f' but there is no filename present
            System.out.println("Error: No file name specified for 'f' option");
            return;
        }
    
        ZipInputStream zis;
        if (!fileFlag) {
            // Read from stdin
            if (verboseFlag) System.out.println("Reading input from stdin");
            zis = new ZipInputStream(System.in);
        } else {
            // Read from the specified file
            if (verboseFlag) System.out.println("Reading jar file: "+args[1]);
            zis = new ZipInputStream(new FileInputStream(new File(args[1])));
        }

        // Read the zip entries - format and print their data
        ZipEntry ze;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



modules/jdktools/src/main/java/org/apache/harmony/tools/jar/Main.java [249:271]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                return;
            }
        }

        if (fileFlag && args.length<2) {
            // Options specify 'f' but there is no filename present
            System.out.println("Error: No file name specified for 'f' option");
            return;
        }

        ZipInputStream zis;
        if (!fileFlag) {
            // Read from stdin
            if (verboseFlag) System.out.println("Reading input from stdin");
            zis = new ZipInputStream(System.in);
        } else {
            // Read from the specified file
            if (verboseFlag) System.out.println("Reading jar file: "+args[1]);
            zis = new ZipInputStream(new FileInputStream(new File(args[1])));
        }

        // Read the zip entries - format and print their data
        ZipEntry ze;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



