Skip to content

Commit

Permalink
remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
gusbicalho committed Jul 16, 2021
1 parent 088ebf6 commit f14474b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CHANGELOG

## 0.2.1
- Remove undue logs

## 0.2.0
- Implement and test toDouble, toBigInt and toInt

Expand Down
2 changes: 0 additions & 2 deletions lib/src/big_decimal.dart
Original file line number Diff line number Diff line change
Expand Up @@ -348,8 +348,6 @@ class BigDecimal implements Comparable<BigDecimal> {
final adjusted = (intStr.length - 1) - scale;
// Java's heuristic to avoid too many decimal places
if (scale >= 0 && adjusted >= -6) {
print(intStr);
print(scale);
if (intStr.length > scale) {
final integerPart = intStr.substring(0, intStr.length - scale);
b.write(integerPart);
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: big_decimal
version: 0.2.0
version: 0.2.1
description: >
A bugless implementation of BigDecimal in Dart based on Java's BigDecimal
Expand Down

0 comments on commit f14474b

Please sign in to comment.