In JDK9 repo, when we run following:
javac NoSuchFile.java
we got the following duplicated error messages:
javac: file not found: NoSuchFile.java
Usage: javac <options> <source files>
use -help for a list of possible options
javac: no source files
Usage: javac <options> <source files>
use -help for a list of possible options
It would be folowing:
javac: file not found: NoSuchFile.java
Usage: javac <options> <source files>
use -help for a list of possible options
javac NoSuchFile.java
we got the following duplicated error messages:
javac: file not found: NoSuchFile.java
Usage: javac <options> <source files>
use -help for a list of possible options
javac: no source files
Usage: javac <options> <source files>
use -help for a list of possible options
It would be folowing:
javac: file not found: NoSuchFile.java
Usage: javac <options> <source files>
use -help for a list of possible options