Remove call to await after kapt work is submitted

Await blocks parallel execution within a project.
Since there are no actions in the task after
`await()`, it is safe to delete the call.
This commit is contained in:
Alexey Tsvetkov
2019-01-21 15:14:18 +03:00
parent 5a6df10522
commit 8672d2adc0
@@ -95,8 +95,6 @@ open class KaptWithoutKotlincTask @Inject constructor(private val workerExecutor
}
logger.info("Kapt worker classpath: ${config.classpath}")
}
workerExecutor.await()
}
}