Ejemplo n.º 1
0
  /**
   * Deletes the given attachment version.
   *
   * @param att The attachment to delete
   * @throws ProviderException If something goes wrong with the backend.
   */
  public void deleteVersion(Attachment att) throws ProviderException {
    if (m_provider == null) return;

    m_provider.deleteVersion(att);
  }