Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,16 +124,6 @@ public CoreCommandSender getConsole() {
return console;
}

@Override
public Core getCore() {
return core;
}

@Override
public ServerType getServerType() {
return ServerType.BUNGEE;
}

@Override
public CoreLogger getCoreLogger() {
return bungeeLogger;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
package xyz.earthcow.networkjoinmessages.common.abstraction;

import xyz.earthcow.networkjoinmessages.common.Core;
import xyz.earthcow.networkjoinmessages.common.modules.DiscordIntegration;

import java.io.File;
import java.util.List;
import java.util.UUID;

public interface CorePlugin {
Core getCore();

void disable();

ServerType getServerType();
File getDataFolder();
CoreLogger getCoreLogger();

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -261,16 +261,6 @@ public PremiumVanish getVanishAPI() {
return premiumVanish;
}

@Override
public ServerType getServerType() {
return ServerType.VELOCITY;
}

@Override
public Core getCore() {
return core;
}

@Override
public CoreCommandSender getConsole() {
return console;
Expand Down
Loading