checkstyle

Signed-off-by: olivier lamy <oliver.lamy@gmail.com>
This commit is contained in:
olivier lamy 2019-11-28 14:15:54 +10:00
parent 1b49e72d59
commit d321c2f034
1 changed files with 6 additions and 6 deletions

View File

@ -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)
{