File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import clamp from 'lodash.clamp' ;
22import { ColorUtils , getOrThrow } from '@deephaven/utils' ;
3- import Log from '@deephaven/log' ;
43import memoizeClear from './memoizeClear' ;
54import GridUtils from './GridUtils' ;
65import GridColorUtils from './GridColorUtils' ;
@@ -20,8 +19,6 @@ import type CellRenderer from './CellRenderer';
2019import DataBarCellRenderer from './DataBarCellRenderer' ;
2120import TextCellRenderer from './TextCellRenderer' ;
2221
23- const log = Log . module ( 'GridRenderer' ) ;
24-
2522type NoneNullColumnRange = { startColumn : number ; endColumn : number } ;
2623
2724type NoneNullRowRange = { startRow : number ; endRow : number } ;
@@ -1860,8 +1857,6 @@ export class GridRenderer {
18601857 width,
18611858 } = metrics ;
18621859
1863- log . debug ( '[0] drawRowFooters' , rowFooterWidth ) ;
1864-
18651860 if ( rowFooterWidth <= 0 ) {
18661861 return ;
18671862 }
Original file line number Diff line number Diff line change @@ -293,12 +293,7 @@ class IrisGridSimplePivotModel extends IrisGridModel {
293293 }
294294
295295 set columnHeaderGroups ( columnHeaderGroups : readonly ColumnHeaderGroup [ ] ) {
296- log . debug ( 'set columnHeaderGroups' , columnHeaderGroups , this . model . columns ) ;
297- try {
298- this . model . columnHeaderGroups = columnHeaderGroups ;
299- } catch ( e ) {
300- debugger ;
301- }
296+ this . model . columnHeaderGroups = columnHeaderGroups ;
302297 }
303298
304299 get rowCount ( ) : number {
You can’t perform that action at this time.
0 commit comments