From d8ebd649de92f7b7849d66d4409f4a80439d5059 Mon Sep 17 00:00:00 2001 From: lbwexler Date: Fri, 12 Jan 2024 06:53:33 -0500 Subject: [PATCH] Remove out-of-date API warning (backed up by more general exception message) --- cmp/grid/columns/Column.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/cmp/grid/columns/Column.ts b/cmp/grid/columns/Column.ts index 957ce39853..afced6b965 100644 --- a/cmp/grid/columns/Column.ts +++ b/cmp/grid/columns/Column.ts @@ -14,7 +14,7 @@ import { RecordActionSpec, StoreRecord } from '@xh/hoist/data'; -import {apiRemoved, logDebug, logWarn, throwIf, warnIf, withDefault} from '@xh/hoist/utils/js'; +import {logDebug, logWarn, throwIf, warnIf, withDefault} from '@xh/hoist/utils/js'; import classNames from 'classnames'; import { castArray, @@ -674,11 +674,6 @@ export class Column { if (!isEmpty(rest)) { const keys = keysIn(rest); - apiRemoved('tooltipElement', { - test: rest['tooltipElement'], - msg: 'Use tooltip property instead.', - v: '58' - }); throw XH.exception( `Column '${this.colId}' configured with unsupported key(s) '${keys}'. Custom config data must be nested within the 'appData' property.` );