Commit 89fed97d authored by Tom Evans's avatar Tom Evans

Merge pull request #388 from tevans/housekeeping

Support mock testing
parents 1377c51c 37946c58
......@@ -70,13 +70,6 @@ public class SchemaManager {
*/
private static final int DATABASE_VERSION = 22;
/**
* Creates a new Schema manager.
*/
SchemaManager() {
}
/**
* Checks the Openfire database schema to ensure that it's installed and up to date.
* If the schema isn't present or up to date, an automatic update will be attempted.
......
......@@ -59,7 +59,7 @@ public class SessionData {
*/
private int stage;
protected SessionData(String sessionid, JID owner) {
public SessionData(String sessionid, JID owner) {
this.id = sessionid;
this.creationStamp = System.currentTimeMillis();
this.stage = -1;
......
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