Removed obsolete -mode CLI parameter.

This commit is contained in:
Evgeny Gerashchenko
2012-07-05 17:46:48 +04:00
parent 531167bcee
commit a02658b1a6
5 changed files with 2 additions and 20 deletions
@@ -74,9 +74,6 @@ public class K2JVMCompilerArguments extends CompilerArguments {
@Argument(value = "jdkAnnotations", description = "Path to the kotlin-jdk-annotations.jar")
public String jdkAnnotations;
@Argument(value = "mode", description = "Special compiler modes: stubs or jdkHeaders")
public String mode;
@Argument(value = "output", description = "output directory")
public String outputDir;
@@ -163,14 +160,6 @@ public class K2JVMCompilerArguments extends CompilerArguments {
this.stdlib = stdlib;
}
public String getMode() {
return mode;
}
public void setMode(String mode) {
this.mode = mode;
}
@Override
public boolean isTags() {
return tags;