areBothCustomBlockWithSameAttr static method

bool areBothCustomBlockWithSameAttr(
  1. BlockGroup g,
  2. BlockGroup gOther
)

Implementation

static bool areBothCustomBlockWithSameAttr(BlockGroup g, BlockGroup gOther) {
  return (g.op.isCustomTextBlock() && gOther.op.isCustomTextBlock() && g.op.hasSameAttr(gOther.op));
}