restored constructor with old signature to fix compilation of android plugin in community repository

This commit is contained in:
nik
2013-04-01 15:21:21 +04:00
parent 47bbc68dcf
commit 0e9b1f5c23

View File

@@ -91,6 +91,12 @@ public class CompilerTask extends Task.Backgroundable {
private Runnable myRestartWork;
private final boolean myCompilationStartedAutomatically;
@Deprecated
public CompilerTask(@NotNull Project project, String contentName, final boolean headlessMode, boolean forceAsync,
boolean waitForPreviousSession) {
this(project, contentName, headlessMode, forceAsync, waitForPreviousSession, false);
}
public CompilerTask(@NotNull Project project, String contentName, final boolean headlessMode, boolean forceAsync,
boolean waitForPreviousSession, boolean compilationStartedAutomatically) {
super(project, contentName);