Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Glavo committed Oct 4, 2023
1 parent 6bcc1a0 commit 75b2a64
Showing 1 changed file with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,14 @@

import static java.nio.charset.StandardCharsets.US_ASCII;

public final class AnsiConsoleSupportImpl implements AnsiConsoleSupport {
public final class AnsiConsoleSupportImpl extends AnsiConsoleSupport {

@Override
public String getProviderName() {
return "musl";
public AnsiConsoleSupportImpl() {
super("musl");
}

@Override
public CLibrary getCLibrary() {
protected CLibrary createCLibrary() {
return new CLibrary() {
private final String[] command;

Expand Down Expand Up @@ -106,7 +105,7 @@ public int isTty(int fd) {
}

@Override
public Kernel32 getKernel32() {
protected Kernel32 createKernel32() {
throw new UnsupportedOperationException();
}
}

0 comments on commit 75b2a64

Please sign in to comment.