cbc does not support stdin.

git-svn-id: file:///Users/aamine/c/gitwork/public/cbc/trunk@4064 1b9489fe-b721-0410-924e-b54b9192deb8
This commit is contained in:
Minero Aoki 2008-09-27 20:37:10 +00:00
parent 540c3c7fa3
commit 94db94b1c4
1 changed files with 1 additions and 6 deletions

View File

@ -142,12 +142,7 @@ class Options {
List srcs = new ArrayList();
while (args.hasNext()) {
String arg = (String)args.next();
// FIXME: stdin
if (arg.equals("-")) {
System.err.println("FIXME: stdin is not supported yet");
System.exit(1);
}
else if (arg.equals("--")) {
if (arg.equals("--")) {
// "--" Stops command line processing
break;
}