Skip to content

Commit

Permalink
Stop trimming leading whitespace chars from data
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePrez authored Jan 9, 2025
1 parent f5c2333 commit 2db5ad2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ protected static DataBlockFetchResult getNextDataBlock(final ResultSet _rs, fina
if (null == cellData) {
cellDataForResponse = null;
} else if (cellData instanceof CharSequence) {
cellDataForResponse = cellData.toString().trim();
cellDataForResponse = cellData.toString().replaceAll("\\s+$","");
} else if (cellData instanceof Number || cellData instanceof Boolean) {
cellDataForResponse = cellData;
} else {
Expand Down

0 comments on commit 2db5ad2

Please sign in to comment.