Skip to content

Commit

Permalink
Make BurchAPI abstract
Browse files Browse the repository at this point in the history
  • Loading branch information
Burchard36 committed Apr 24, 2022
1 parent 757d1ca commit 4cf157b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main/java/com/burchard36/BurchAPI.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,17 @@
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Set;

public final class BurchAPI implements Api {
public abstract class BurchAPI implements Api {

public JavaPlugin plugin;
public static JavaPlugin INSTANCE;
private HologramManager hologramManager;

public BurchAPI() {}

/**
* Initializes the API to a plugin
*/
Expand Down Expand Up @@ -162,6 +163,7 @@ public static List<String> convert(final String... message) {
/**
* Returns an instance of the Hologram Manager
* @return instance of HologramManager
* @deprecated This is broken, do not use it
*/
public HologramManager getHologramManager() {
return this.hologramManager;
Expand Down

0 comments on commit 4cf157b

Please sign in to comment.