checkstyle
Signed-off-by: olivier lamy <oliver.lamy@gmail.com>
This commit is contained in:
parent
1b49e72d59
commit
d321c2f034
|
@ -177,9 +177,9 @@ public class JdbcTestHelper
|
|||
"select * from " + TABLE +
|
||||
" where " + ID_COL + " = ? and " + CONTEXT_COL +
|
||||
" = ? and virtualHost = ?" );
|
||||
statement.setString(1, data.getId() );
|
||||
statement.setString(2, data.getContextPath() );
|
||||
statement.setString(3, data.getVhost() );
|
||||
statement.setString(1, data.getId());
|
||||
statement.setString(2, data.getContextPath());
|
||||
statement.setString(3, data.getVhost());
|
||||
|
||||
result = statement.executeQuery();
|
||||
|
||||
|
@ -200,9 +200,9 @@ public class JdbcTestHelper
|
|||
Blob blob = result.getBlob(MAP_COL);
|
||||
|
||||
SessionData tmp =
|
||||
new SessionData( data.getId(), data.getContextPath(), data.getVhost(), result.getLong( CREATE_COL ),
|
||||
result.getLong( ACCESS_COL ), result.getLong( LAST_ACCESS_COL ),
|
||||
result.getLong( MAX_IDLE_COL ) );
|
||||
new SessionData( data.getId(), data.getContextPath(), data.getVhost(), result.getLong(CREATE_COL),
|
||||
result.getLong(ACCESS_COL), result.getLong(LAST_ACCESS_COL),
|
||||
result.getLong(MAX_IDLE_COL));
|
||||
|
||||
if (blob.length() > 0)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue