From 94db94b1c46eeaca7313cbdd92e75a5ebfb54b94 Mon Sep 17 00:00:00 2001 From: Minero Aoki Date: Sat, 27 Sep 2008 20:37:10 +0000 Subject: [PATCH] cbc does not support stdin. git-svn-id: file:///Users/aamine/c/gitwork/public/cbc/trunk@4064 1b9489fe-b721-0410-924e-b54b9192deb8 --- net/loveruby/cflat/compiler/Options.java | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/net/loveruby/cflat/compiler/Options.java b/net/loveruby/cflat/compiler/Options.java index d9eabd3..cc59e44 100644 --- a/net/loveruby/cflat/compiler/Options.java +++ b/net/loveruby/cflat/compiler/Options.java @@ -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; }