fixed error in the block processor: entities with orderField=null were not considered
This commit is contained in:
parent
eea8e87b25
commit
9e8ea8f6ee
|
@ -131,7 +131,7 @@ public class BlockProcessor {
|
||||||
|
|
||||||
WfConfig wf = dedupConf.getWf();
|
WfConfig wf = dedupConf.getWf();
|
||||||
final Field fieldsPivot = pivot.values(wf.getOrderField());
|
final Field fieldsPivot = pivot.values(wf.getOrderField());
|
||||||
final String fieldPivot = (fieldsPivot == null) || fieldsPivot.isEmpty() ? null : fieldsPivot.stringValue();
|
final String fieldPivot = (fieldsPivot == null) || fieldsPivot.isEmpty() ? "" : fieldsPivot.stringValue();
|
||||||
|
|
||||||
if (fieldPivot != null) {
|
if (fieldPivot != null) {
|
||||||
int i = 0;
|
int i = 0;
|
||||||
|
|
Loading…
Reference in New Issue