Sfoglia il codice sorgente

删除多于函数

yjp 1 anno fa
parent
commit
24bf9b09d5
1 ha cambiato i file con 0 aggiunte e 9 eliminazioni
  1. 0 9
      client/table_row.go

+ 0 - 9
client/table_row.go

@@ -92,15 +92,6 @@ func (tableRow *TableRow) AddColumnValueFloat64(columnName string, value float64
 	return tableRow
 }
 
-func (tableRow *TableRow) ColumnValue(columnName string) any {
-	value, ok := tableRow.row[columnName]
-	if !ok {
-		return nil
-	}
-
-	return value
-}
-
 func (tableRow *TableRow) ColumnValueTime(columnName string) time.Time {
 	value, ok := tableRow.row[columnName].(time.Time)
 	if !ok {