diff --git a/js/js2/jsc/readme b/js/js2/jsc/readme index a27f1229a7dc..e681ad9e840c 100644 --- a/js/js2/jsc/readme +++ b/js/js2/jsc/readme @@ -1,5 +1,6 @@ J S C R E A D M E F I L E -Jeff Dyer, Dec-1-2000 +Jeff Dyer, Mountain View Compiler Company +Dec-15-2000 OVERVIEW @@ -19,11 +20,11 @@ installed on your system. If it is correctly installed, you can type followed by a bunch of other documentation text. -NOTE: I've only tried to build on NT40 using Java 1.3.0_01. You may -get different results in different environments. +NOTE: I've only tried to build on NT40 using Java2 1.3.0_01. You may +get different results in different environments. Go to the directory ./build/java, and run your favorite make -utility. Such as with the command: +utility, such as: make @@ -76,6 +77,10 @@ ISSUES CHANGES +Dec-15-2000 +----------- +Removed dependency on sun.tools packages. + Dec-1-2000 ---------- * Original checkin to mozilla.org. diff --git a/js/js2/jsc/src/java/main/Main.java b/js/js2/jsc/src/java/main/Main.java index 18dcc0dbf094..7814d7e26016 100644 --- a/js/js2/jsc/src/java/main/Main.java +++ b/js/js2/jsc/src/java/main/Main.java @@ -23,16 +23,6 @@ import com.compilercompany.ecmascript.*; import java.io.*; -/** - * Dummy command line parsing class. - * Probably shouldn't use sun.tools.util.CommandLine. - */ -class CommandLine { - static String[] parse(String[] args) throws IOException { - return args; - } -} - /* * The main driver. */ @@ -46,15 +36,6 @@ public class Main { */ public static void main(String[] args) { - /* Preprocess @file arguments */ - try { - args = CommandLine.parse(args); - } catch (FileNotFoundException e) { - System.out.println("Can't read "+ e.getMessage()); - } catch (IOException e) { - System.out.println("I/O error " + e.getMessage()); - } - new Main(args).run(); System.exit(0); } diff --git a/js2/jsc/readme b/js2/jsc/readme index a27f1229a7dc..e681ad9e840c 100644 --- a/js2/jsc/readme +++ b/js2/jsc/readme @@ -1,5 +1,6 @@ J S C R E A D M E F I L E -Jeff Dyer, Dec-1-2000 +Jeff Dyer, Mountain View Compiler Company +Dec-15-2000 OVERVIEW @@ -19,11 +20,11 @@ installed on your system. If it is correctly installed, you can type followed by a bunch of other documentation text. -NOTE: I've only tried to build on NT40 using Java 1.3.0_01. You may -get different results in different environments. +NOTE: I've only tried to build on NT40 using Java2 1.3.0_01. You may +get different results in different environments. Go to the directory ./build/java, and run your favorite make -utility. Such as with the command: +utility, such as: make @@ -76,6 +77,10 @@ ISSUES CHANGES +Dec-15-2000 +----------- +Removed dependency on sun.tools packages. + Dec-1-2000 ---------- * Original checkin to mozilla.org. diff --git a/js2/jsc/src/java/main/Main.java b/js2/jsc/src/java/main/Main.java index 18dcc0dbf094..7814d7e26016 100644 --- a/js2/jsc/src/java/main/Main.java +++ b/js2/jsc/src/java/main/Main.java @@ -23,16 +23,6 @@ import com.compilercompany.ecmascript.*; import java.io.*; -/** - * Dummy command line parsing class. - * Probably shouldn't use sun.tools.util.CommandLine. - */ -class CommandLine { - static String[] parse(String[] args) throws IOException { - return args; - } -} - /* * The main driver. */ @@ -46,15 +36,6 @@ public class Main { */ public static void main(String[] args) { - /* Preprocess @file arguments */ - try { - args = CommandLine.parse(args); - } catch (FileNotFoundException e) { - System.out.println("Can't read "+ e.getMessage()); - } catch (IOException e) { - System.out.println("I/O error " + e.getMessage()); - } - new Main(args).run(); System.exit(0); }