/**
  * Deletes values that link an attribute to a product
  *
  * @param ProductInterface  $product
  * @param AbstractAttribute $attribute
  *
  * @return boolean
  */
 public function removeAttributeFromProduct(ProductInterface $product, AbstractAttribute $attribute)
 {
     $this->builder->removeAttributeFromProduct($product, $attribute);
 }