소스 검색

删除多于函数

yjp 1 년 전
부모
커밋
24bf9b09d5
1개의 변경된 파일0개의 추가작업 그리고 9개의 파일을 삭제
  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 {