Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import io.roastedroot.proxywasm.LogLevel;
import io.roastedroot.proxywasm.WasmException;
import java.nio.charset.StandardCharsets;
import java.util.Objects;

/**
* Implements a restricted subset of the WASI ABI, specifically so that a WASM module can
Expand All @@ -29,7 +30,7 @@ public class ABI_WASI {
private final Handler handler;

public ABI_WASI(Handler handler) {
this.handler = handler;
this.handler = Objects.requireNonNull(handler);
}

////////////////////////////////////////////////////////////////////////////
Expand Down
Loading