Skip to content

Commit

Permalink
Oops, stackoverflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bdw429s committed Jan 4, 2024
1 parent 6601572 commit ab678e9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/main/java/ortus/boxlang/runtime/types/QueryColumn.java
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,11 @@ public QueryColumn setCell( int row, Object value ) {
* @return The value of the cell
*/
public Object getCell( int row ) {
return getCell( row );
// Does full null support change this?
if ( query.isEmpty() ) {
return "";
}
return this.query.getData().get( row )[ index ];
}

/**
Expand Down

0 comments on commit ab678e9

Please sign in to comment.