JDK 1.1 compatibility. Should flesh out the CommandLine class to do what sun.tools.util.CommandLine does.

This commit is contained in:
beard%netscape.com 2000-12-15 01:09:58 +00:00
Родитель 06ecbd3c25
Коммит 364b0b1752
2 изменённых файлов: 20 добавлений и 2 удалений

Просмотреть файл

@ -21,9 +21,18 @@
*/
import com.compilercompany.ecmascript.*;
import sun.tools.util.CommandLine;
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.
*/

Просмотреть файл

@ -21,9 +21,18 @@
*/
import com.compilercompany.ecmascript.*;
import sun.tools.util.CommandLine;
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.
*/