JETTY-776

Oops forgot to remove test code.


git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1219 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Jan Bartel 2010-01-28 00:56:18 +00:00
parent c378bc797b
commit 6391cbcec7
1 changed files with 0 additions and 3 deletions

View File

@ -26,7 +26,6 @@ public class JdbcTestServer extends AbstractTestServer
public static final String CONNECTION_URL = "jdbc:derby:sessions;create=true";
public static final int SAVE_INTERVAL = 1;
protected boolean _optimize = true;
static
{
@ -46,7 +45,6 @@ public class JdbcTestServer extends AbstractTestServer
public JdbcTestServer (int port, boolean optimize)
{
super(port);
_optimize=optimize;
}
/**
@ -80,7 +78,6 @@ public class JdbcTestServer extends AbstractTestServer
JDBCSessionManager manager = new JDBCSessionManager();
manager.setIdManager((JDBCSessionIdManager)_sessionIdManager);
manager.setSaveInterval(SAVE_INTERVAL); //ensure we save any changes to the session at least once per second
manager.setOptimizeDbAccess(_optimize); //or go to the database every time
return manager;
}