change string check
This commit is contained in:
parent
b727f635df
commit
6772b2160f
|
@ -54,7 +54,7 @@ public class DeleteExpungeSvcImpl implements IDeleteExpungeSvc<JpaPid> {
|
|||
myDeleteExpungeSqlBuilder.convertPidsToDeleteExpungeSql(theJpaPids, theCascade, theCascadeMaxRounds);
|
||||
List<String> sqlList = sqlResult.getSqlStatements();
|
||||
|
||||
String formattedChunkIdForLogMessage = theChunkId.isEmpty() ? "" : "Chunk[" + theChunkId + "] - ";
|
||||
String formattedChunkIdForLogMessage = theChunkId.isBlank() ? "" : "Chunk[" + theChunkId + "] - ";
|
||||
|
||||
ourLog.debug("{}Executing {} delete expunge sql commands", formattedChunkIdForLogMessage, sqlList.size());
|
||||
long totalDeleted = 0;
|
||||
|
|
Loading…
Reference in New Issue