-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace deprecated BigDecimal.new() calls with BigDecimal()
After upgrading to ruby 2.6.1, our application started logging this warning: ``` warning: BigDecimal.new is deprecated; use BigDecimal() method instead. ``` which was being emitted from roxml-4.0.0/lib/roxml/definition.rb:179 So, in this commit I've replaced the deprecated `BigDecimal.new` invocations with invoking the `BigDecimal` method as recommended.
- Loading branch information
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters