Sfoglia il codice sorgente

Merge remote-tracking branch 'origin/dev' into dev

Vanessa 1 anno fa
parent
commit
57970c97a4
1 ha cambiato i file con 0 aggiunte e 5 eliminazioni
  1. 0 5
      kernel/av/table.go

+ 0 - 5
kernel/av/table.go

@@ -376,11 +376,6 @@ func (table *Table) FilterRows() {
 	for _, row := range table.Rows {
 		pass := true
 		for j, index := range colIndexes {
-			c := table.Columns[index]
-			if c.Type == KeyTypeBlock {
-				continue
-			}
-
 			if !row.Cells[index].Value.CompareOperator(table.Filters[j].Value, table.Filters[j].Operator) {
 				pass = false
 				break