mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-24 06:06:45 +01:00
749c83ac59
There are some API breaks as a result of these rewrites, I tried to keep it minimal, but I'm sure some plugins will need to update.
14 lines
333 B
Java
14 lines
333 B
Java
package com.gmail.nossr50.chat.mailer;
|
|
|
|
import org.bukkit.plugin.Plugin;
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
|
|
public abstract class AbstractChatMailer implements ChatMailer {
|
|
protected final @NotNull Plugin pluginRef;
|
|
|
|
public AbstractChatMailer(@NotNull Plugin pluginRef) {
|
|
this.pluginRef = pluginRef;
|
|
}
|
|
}
|