From 16d0b5c228dd8d981a0d79944c70248ea813d63b Mon Sep 17 00:00:00 2001 From: ementalo Date: Wed, 27 Jun 2012 13:35:39 +0100 Subject: package name change to net.ess3 --- .../com/earth2me/essentials/chat/ChatStore.java | 40 ---------------------- 1 file changed, 40 deletions(-) delete mode 100644 EssentialsChat/src/com/earth2me/essentials/chat/ChatStore.java (limited to 'EssentialsChat/src/com/earth2me/essentials/chat/ChatStore.java') diff --git a/EssentialsChat/src/com/earth2me/essentials/chat/ChatStore.java b/EssentialsChat/src/com/earth2me/essentials/chat/ChatStore.java deleted file mode 100644 index f01ada07b..000000000 --- a/EssentialsChat/src/com/earth2me/essentials/chat/ChatStore.java +++ /dev/null @@ -1,40 +0,0 @@ -package com.earth2me.essentials.chat; - -import com.earth2me.essentials.api.IEssentials; -import com.earth2me.essentials.api.IUser; -import com.earth2me.essentials.economy.Trade; - - -public class ChatStore -{ - private final transient IUser user; - private final transient String type; - private final transient Trade charge; - - public ChatStore(final IEssentials ess, final IUser user, final String type) - { - this.user = user; - this.type = type; - this.charge = new Trade(getLongType(), ess); - } - - public IUser getUser() - { - return user; - } - - public Trade getCharge() - { - return charge; - } - - public String getType() - { - return type; - } - - public final String getLongType() - { - return type.length() == 0 ? "chat" : "chat-" + type; - } -} -- cgit v1.2.3