Code style changes.
This commit is contained in:
@ -137,7 +137,7 @@ public class BitSetIDFactory extends IdFactory
|
||||
*/
|
||||
protected synchronized int usedIdCount()
|
||||
{
|
||||
return (size() - FIRST_OID);
|
||||
return size() - FIRST_OID;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -92,7 +92,7 @@ public class CompactionIDFactory extends IdFactory
|
||||
for (int i = 1; i <= hole; i++)
|
||||
{
|
||||
id = tmp_obj_ids[N - i];
|
||||
_log.info(getClass().getSimpleName() + ": Compacting DB object ID=" + id + " into " + (_curOID));
|
||||
_log.info(getClass().getSimpleName() + ": Compacting DB object ID=" + id + " into " + _curOID);
|
||||
for (String update : ID_UPDATES)
|
||||
{
|
||||
try (PreparedStatement ps = con.prepareStatement(update))
|
||||
|
Reference in New Issue
Block a user