Another formatting fix

This commit is contained in:
Nik Everett 2015-09-24 16:50:04 -04:00
parent f8fa00185f
commit fe8f0b97e4
1 changed files with 3 additions and 1 deletions

View File

@ -169,7 +169,9 @@ public class ClusterBlocks extends AbstractDiffable<ClusterBlocks> {
if (!indexBlocked(level, index)) {
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())));
}