Fix typedoc warning about unused parameters

This commit is contained in:
Simon Hausmann 2024-01-02 10:49:14 +01:00
parent ba738be0a7
commit 55e3a0418a

View file

@ -203,8 +203,8 @@ export abstract class Model<T> {
/**
* Implementations of this function must store the provided data parameter
* in the model at the specified row.
* @param row index in range 0..(rowCount() - 1).
* @param data new data item to store on the given row index
* @param _row index in range 0..(rowCount() - 1).
* @param _data new data item to store on the given row index
*/
setRowData(_row: number, _data: T): void {
console.log(