示例#1
0
 @Override
 public boolean constraintDoUnRemove(UniquenessConstraint constraint) {
   // hasChanges should already be set correctly when this is called
   if (constraintsChanges().unRemove(constraint)) {
     constraintIndexChanges.unRemove(
         new IndexDescriptor(constraint.label(), constraint.propertyKeyId()));
     return true;
   }
   return false;
 }