示例#1
0
  public void removeEffectFromAttribute(
      final @Nonnull String attributeCode, final @Nonnull String effectId)
      throws AttributeNotFound {
    AttributeFeature attributeFeature = getAttributeFeature();

    if (attributeFeature != null) {
      attributeFeature.removeEffectFromAttribute(attributeCode, effectId);
    } else {
      throw new AttributeNotFound(getFeatureEntityId(), attributeCode);
    }
  }