Skip to content

Commit

Permalink
DatabaseAccessor: Remove duplicate code branch.
Browse files Browse the repository at this point in the history
  • Loading branch information
wilx authored Sep 25, 2024
1 parent ec0c9cd commit f7aad7b
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1540,8 +1540,6 @@ protected Object getObjectThroughOptimizedDataConversion(
} else if (fieldType == ClassConstants.BIGINTEGER) {
value = resultSet.getBigDecimal(columnNumber);
if (value != null) return ((BigDecimal)value).toBigInteger();
} else if (fieldType == ClassConstants.BIGDECIMAL) {
value = resultSet.getBigDecimal(columnNumber);
}

// PERF: Only check for null for primitives.
Expand Down

0 comments on commit f7aad7b

Please sign in to comment.