* encoding.c (enc_get_encoding): removed.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14210 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2007-12-13 08:05:00 +00:00
Родитель af69c73087
Коммит e18e893846
1 изменённых файлов: 0 добавлений и 10 удалений

Просмотреть файл

@ -68,16 +68,6 @@ enc_check_encoding(VALUE obj)
return index;
}
static rb_encoding *
enc_get_encoding(VALUE obj)
{
if (enc_check_encoding(obj) < 0) {
rb_raise(rb_eTypeError, "wrong argument type %s (expected Encoding)",
rb_obj_classname(obj));
}
return RDATA(obj)->data;
}
int
rb_to_encoding_index(VALUE enc)
{