Skip to content

Commit

Permalink
chore: remove deprecated "delete" property methods
Browse files Browse the repository at this point in the history
  • Loading branch information
benhutchins committed Sep 15, 2023
1 parent b438325 commit d0fa032
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions src/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -428,16 +428,6 @@ export class Table {
return this
}

/**
* Remove a single attribute by its attribute name.
*
* Replaced by {@link Table.removeAttribute}.
* @deprecated Since 3.0.0, will be removed in 4.0.0
*/
public deleteAttribute(attributeName: string): this {
return this.removeAttribute(attributeName)
}

/**
* Remove a single attribute by its attribute name.
*
Expand All @@ -454,16 +444,6 @@ export class Table {
return this
}

/**
* Mark several attributes to be removed.
*
* Replaced by {@link Table.removeAttributes}.
* @deprecated Since 3.0.0, will be removed in 4.0.0
*/
public deleteAttributes(attributes: string[]): this {
return this.removeAttributes(attributes)
}

/**
* Remove several attributes by their property names.
*
Expand Down

0 comments on commit d0fa032

Please sign in to comment.