1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-16 11:37:30 +02:00

Formatting.

Signed-off-by: Paul Buonopane <techsoftadvanced@gmail.com>
This commit is contained in:
Paul Buonopane
2012-02-23 12:11:09 -05:00
parent 4203119e9a
commit 146599ae4b
11 changed files with 21 additions and 21 deletions

View File

@@ -52,7 +52,6 @@ public interface IEssentials extends Plugin
int scheduleSyncRepeatingTask(Runnable run, long delay, long period); int scheduleSyncRepeatingTask(Runnable run, long delay, long period);
//IPermissionsHandler getPermissionsHandler(); //IPermissionsHandler getPermissionsHandler();
void reload(); void reload();
TNTExplodeListener getTNTListener(); TNTExplodeListener getTNTListener();

View File

@@ -1,5 +1,6 @@
package com.earth2me.essentials.api; package com.earth2me.essentials.api;
public interface IEssentialsModule public interface IEssentialsModule
{ {
} }

View File

@@ -6,7 +6,7 @@ import java.util.Collection;
public interface IKits extends IReload public interface IKits extends IReload
{ {
Kit getKit(String kit)throws Exception; Kit getKit(String kit) throws Exception;
void sendKit(IUser user, String kit) throws Exception; void sendKit(IUser user, String kit) throws Exception;

View File

@@ -2,7 +2,9 @@ package com.earth2me.essentials.api;
import org.bukkit.command.CommandSender; import org.bukkit.command.CommandSender;
public interface IReplyTo {
public interface IReplyTo
{
void setReplyTo(CommandSender user); void setReplyTo(CommandSender user);
CommandSender getReplyTo(); CommandSender getReplyTo();

View File

@@ -6,5 +6,4 @@ import com.earth2me.essentials.storage.IStorageObjectHolder;
public interface IWarp extends IStorageObjectHolder<Warp> public interface IWarp extends IStorageObjectHolder<Warp>
{ {
} }

View File

@@ -3,7 +3,6 @@ package com.earth2me.essentials.api;
public class InvalidNameException extends Exception public class InvalidNameException extends Exception
{ {
public InvalidNameException(Throwable thrwbl) public InvalidNameException(Throwable thrwbl)
{ {
super(thrwbl); super(thrwbl);