Not longer defaults to noStdLib unless set from project

This commit is contained in:
Erik C. Thauvin 2023-11-15 12:32:24 -08:00
parent 28ad500a12
commit f5caba550d
2 changed files with 4 additions and 2 deletions

View file

@ -16,10 +16,10 @@
package rife.bld.extension;
import java.io.File;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.io.File;
/**
* Configuration for the Kotlin compiler options.
@ -45,7 +45,7 @@ public class CompileKotlinOptions {
private String moduleName_;
private boolean noJdk_;
private boolean noReflect_;
private boolean noStdLib_ = true;
private boolean noStdLib_;
private boolean noWarn_;
private String path_;
private boolean progressive_;