[K/N] Remove obsolete TempFiles constructor parameter

This commit is contained in:
Sergey Bogolepov
2023-01-25 17:46:15 +02:00
committed by Space Team
parent 6a06be08cd
commit 7402ef24bb
3 changed files with 3 additions and 3 deletions
@@ -22,7 +22,7 @@ import org.jetbrains.kotlin.konan.file.*
* Creates and stores temporary compiler outputs
* If pathToTemporaryDir is given and is not empty then temporary outputs will be preserved
*/
class TempFiles(outputPath: String, pathToTemporaryDir: String? = null) {
class TempFiles(pathToTemporaryDir: String? = null) {
fun dispose() {
if (deleteOnExit) {
// Note: this can throw an exception if a file deletion is failed for some reason (e.g. OS is Windows and the file is in use).