Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e646bdf

Browse files
committedNov 8, 2023
whoops
1 parent 5fa9de5 commit e646bdf

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed
 

‎src/main/java/com/microsoft/sqlserver/jdbc/SQLServerConnectionPoolProxy.java

+7-6
Original file line numberDiff line numberDiff line change
@@ -693,22 +693,23 @@ public void setAccessTokenCallbackClass(String accessTokenCallbackClass) {
693693
}
694694

695695
/**
696-
* Returns the current value for 'calculateBigDecimalScale'.
696+
* Returns the current value for 'calcBigDecimalScale'.
697697
*
698-
* @return accessTokenCallbackClass
698+
* @return calcBigDecimalScale
699+
* a boolean
699700
*/
700701
@Override
701-
public boolean getCalculateBigDecimalScale() {
702+
public boolean getCalcBigDecimalScale() {
702703
return wrappedConnection.getCalcBigDecimalScale();
703704
}
704705

705706
/**
706707
* Sets the current value of 'calculateBigDecimalScale' for the driver.
707708
*
708-
* @param calculateBigDecimalScale
709+
* @param calcBigDecimalScale
709710
*/
710711
@Override
711-
public void setCalculateBigDecimalScale(boolean calculateBigDecimalScale) {
712-
wrappedConnection.setCalculateBigDecimalScale(calculateBigDecimalScale);
712+
public void setCalcBigDecimalScale(boolean calcBigDecimalScale) {
713+
wrappedConnection.setCalcBigDecimalScale(calcBigDecimalScale);
713714
}
714715
}

0 commit comments

Comments
 (0)
Please sign in to comment.