Fix compile

This commit is contained in:
Jesse Boyd
2018-08-16 00:04:16 +10:00
parent be574391ed
commit 659ed09bf1
8 changed files with 11 additions and 13 deletions

View File

@ -139,7 +139,6 @@ public class BlockMask extends AbstractExtentMask {
if (other instanceof SingleBlockTypeMask) {
return new BlockMaskBuilder(bitSets).filter(((SingleBlockTypeMask) other).getBlockType()).build(getExtent());
}
// TODO FIXME BlockTypeMask
return null;
}
@ -164,7 +163,6 @@ public class BlockMask extends AbstractExtentMask {
if (other instanceof SingleBlockTypeMask) {
return new BlockMaskBuilder(bitSets).add(((SingleBlockTypeMask) other).getBlockType()).build(getExtent());
}
// TODO FIXME BlockTypeMask
return null;
}