From 4f81c1a43cf56f48c8cca1e835eba43026fec98a Mon Sep 17 00:00:00 2001 From: greenbigfrog Date: Mon, 5 Feb 2018 17:41:25 +0100 Subject: [PATCH] Remove comment --- src/pg_ext/big_decimal.cr | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/pg_ext/big_decimal.cr b/src/pg_ext/big_decimal.cr index 732cd947..7e31626f 100644 --- a/src/pg_ext/big_decimal.cr +++ b/src/pg_ext/big_decimal.cr @@ -5,8 +5,6 @@ module PG # Returns a BigDecimal representation of the numeric. This retains all precision. def to_big_d return BigDecimal.new("0") if nan? || ndigits == 0 - - # Since BigDecimal allows initialaztion from String, why should one reinvent the wheel? BigDecimal.new(to_s) end end