1
0
mirror of https://e.coding.net/circlecloud/QuickShop.git synced 2024-12-29 08:08:49 +00:00

remove uuid message...

This commit is contained in:
j502647092 2015-10-04 20:26:27 +08:00
parent 4c21258525
commit f6f061daf3

View File

@ -84,7 +84,7 @@ public class MsgUtil {
try {
final ResultSet rs = plugin.getDB().getConnection().prepareStatement("SELECT * FROM messages").executeQuery();
while (rs.next()) {
final UUID owner = UUID.fromString(rs.getString("owner"));
final String owner = rs.getString("owner");
final String message = rs.getString("message");
LinkedList<String> msgs = player_messages.get(owner);
if (msgs == null) {