Skip to content

Commit

Permalink
Fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
Archy-X committed Jul 1, 2024
1 parent b3038b0 commit fe04380
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
import org.jetbrains.annotations.Nullable;

import java.util.*;
import java.util.concurrent.TimeUnit;

public class OfflineSkillsUser implements SkillsUser {

Expand Down Expand Up @@ -203,4 +204,19 @@ public void clearAllJobs() {
public int getJobLimit() {
return 0;
}

@Override
public void sendActionBar(String message) {

}

@Override
public void sendActionBar(String message, int duration, TimeUnit timeUnit) {

}

@Override
public void pauseActionBar(int duration, TimeUnit timeUnit) {

}
}

0 comments on commit fe04380

Please sign in to comment.