1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/bigdecimal/bigdecimal.c (cannot_be_coerced_into_BigDecimal):

remove duplication.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32998 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
mrkn 2011-08-17 14:04:22 +00:00
parent 4e8d6c105c
commit 52c7bbd444
2 changed files with 8 additions and 4 deletions

View file

@ -1,3 +1,8 @@
Wed Aug 17 23:01:00 2011 Kenta Murata <mrkn@mrkn.jp>
* ext/bigdecimal/bigdecimal.c (cannot_be_coerced_into_BigDecimal):
remove duplication.
Wed Aug 17 15:27:00 2011 Kenta Murata <mrkn@mrkn.jp>
* ext/bigdecimal/bigdecimal.c (cannot_be_coerced_into_BigDecimal):

View file

@ -182,14 +182,13 @@ cannot_be_coerced_into_BigDecimal(VALUE exc_class, VALUE v)
VALUE str;
if (rb_special_const_p(v)) {
str = rb_str_cat2(rb_str_dup(rb_inspect(v)),
" can't be coerced into BigDecimal");
str = rb_inspect(v);
}
else {
str = rb_str_cat2(rb_str_dup(rb_class_name(rb_obj_class(v))),
" can't be coerced into BigDecimal");
str = rb_class_name(rb_obj_class(v));
}
str = rb_str_cat2(rb_str_dup(str), " can't be coerced into BigDecimal");
rb_exc_raise(rb_exc_new3(exc_class, str));
}