Skip to content

Commit 32ef835

Browse files
committed
[Wasm][NFC] Remove misleading default arguments from WasmKlibCheckers
They were unused anyway and suggested that there were situations where empty versions of these arguments can be used, which no longer seems to be the case.
1 parent fdf7d73 commit 32ef835

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

compiler/ir/serialization.js/src/org/jetbrains/kotlin/ir/backend/js/wasm/WasmKlibCheckers.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ object WasmKlibCheckers {
2020
fun makeChecker(
2121
diagnosticReporter: IrDiagnosticReporter,
2222
configuration: CompilerConfiguration,
23-
cleanFiles: List<SerializedIrFile> = listOf(),
24-
exportedNames: ExportNamesMap = mapOf()
23+
cleanFiles: List<SerializedIrFile>,
24+
exportedNames: ExportNamesMap,
2525
): IrVisitorVoid {
2626
return object : IrVisitorVoid() {
2727
private val diagnosticContext = JsKlibDiagnosticContext(configuration)

0 commit comments

Comments
 (0)