Another formatting fix
This commit is contained in:
parent
f8fa00185f
commit
fe8f0b97e4
|
@ -169,7 +169,9 @@ public class ClusterBlocks extends AbstractDiffable<ClusterBlocks> {
|
||||||
if (!indexBlocked(level, index)) {
|
if (!indexBlocked(level, index)) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
Stream<ClusterBlock> blocks = concat(global(level).stream(), blocksForIndex(level, index).stream());
|
Stream<ClusterBlock> blocks = concat(
|
||||||
|
global(level).stream(),
|
||||||
|
blocksForIndex(level, index).stream());
|
||||||
return new ClusterBlockException(unmodifiableSet(blocks.collect(toSet())));
|
return new ClusterBlockException(unmodifiableSet(blocks.collect(toSet())));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue