Schamschi opened a new pull request #109: MATH-1492: Replace usages of commons-numbers-core methods with equivalent java.lang.Math methods URL: https://github.com/apache/commons-math/pull/109 Replace usages of the following methods from org.apache.commons.numbers.core.ArithmeticUtils: addAndCheck(int, int) addAndCheck(long, long) mulAndCheck(int, int) mulAndCheck(long, long) subAndCheck(int, int) subAndCheck(long, long) With the following methods from java.lang.Math: addExact(int, int) addExact(long, long) multiplyExact(int, int) multiplyExact(long, long) subtractExact(int, int) subtractExact(long, long)
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
