Commit bb0f97bd authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Fixed typo in table name. JM-1504

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@10935 b35dd754-fafc-0310-a699-88a17e54d16e
parent 3189cd6b
......@@ -13,13 +13,16 @@
package org.jivesoftware.openfire.group;
import org.jivesoftware.database.DbConnectionManager;
import org.jivesoftware.openfire.XMPPServer;
import org.jivesoftware.util.Log;
import org.jivesoftware.util.StringUtils;
import org.jivesoftware.openfire.XMPPServer;
import org.xmpp.packet.JID;
import java.sql.*;
import java.util.*;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
/**
* Database implementation of the GroupManager interface.
......@@ -35,7 +38,7 @@ public class DefaultGroupProvider implements GroupProvider {
private static final String SET_GROUP_NAME_1 =
"UPDATE ofGroup SET groupName=? WHERE groupName=?";
private static final String SET_GROUP_NAME_2 =
"UPDATE oGroupProp SET groupName=? WHERE groupName=?";
"UPDATE ofGroupProp SET groupName=? WHERE groupName=?";
private static final String SET_GROUP_NAME_3 =
"UPDATE ofGroupUser SET groupName=? WHERE groupName=?";
private static final String DELETE_GROUP_USERS =
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment