mirror of
https://e.coding.net/circlecloud/QuickShop.git
synced 2024-12-31 09:05:38 +00:00
remove uuid message...
This commit is contained in:
parent
4c21258525
commit
f6f061daf3
@ -84,7 +84,7 @@ public class MsgUtil {
|
|||||||
try {
|
try {
|
||||||
final ResultSet rs = plugin.getDB().getConnection().prepareStatement("SELECT * FROM messages").executeQuery();
|
final ResultSet rs = plugin.getDB().getConnection().prepareStatement("SELECT * FROM messages").executeQuery();
|
||||||
while (rs.next()) {
|
while (rs.next()) {
|
||||||
final UUID owner = UUID.fromString(rs.getString("owner"));
|
final String owner = rs.getString("owner");
|
||||||
final String message = rs.getString("message");
|
final String message = rs.getString("message");
|
||||||
LinkedList<String> msgs = player_messages.get(owner);
|
LinkedList<String> msgs = player_messages.get(owner);
|
||||||
if (msgs == null) {
|
if (msgs == null) {
|
||||||
|
Loading…
Reference in New Issue
Block a user